Link Search Menu Expand Document

GlobalLog

void info(String log, boolean showToast);

  • 글로벌 로그를 기록해요. GlobalLog.i();로도 사용할 수 있어요.
  • showToasttrue라면 로그가 토스트 메시지로도 출력될거에요.

void debug(String log, boolean showToast);

  • 녹색 글씨로 글로벌 로그를 기록해요. GlobalLog.d();로도 사용할 수 있어요.
  • showToasttrue라면 로그가 토스트 메시지로도 출력될거에요.

void error(String log, boolean showToast);

  • 빨간색 글씨로 글로벌 로그를 기록해요. GlobalLog.e();로도 사용할 수 있어요.
  • showToasttrue라면 로그가 토스트 메시지로도 출력될거에요.

void clear();

  • 기록되어 있는 글로벌 로그를 삭제해요.

Back to top

© 2018 - 2024 Dark Tornado, All rights reserved.