/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/util/log/LoggerStrategy.java
17 строк
510 B
alexzatsepin
[android] Added the ability to write logs to files in the external storage (<external_storage/logs/...)
31 янв 2017, 19:56
31 янв 2017, 19:56
2784268
Код
Авторство
О чём код?
package com.mapswithme.util.log; interface LoggerStrategy { void v(String tag, String msg); void v(String tag, String msg, Throwable tr); void d(String tag, String msg); void d(String tag, String msg, Throwable tr); void i(String tag, String msg); void i(String tag, String msg, Throwable tr); void w(String tag, String msg); void w(String tag, String msg, Throwable tr); void w(String tag, Throwable tr); void e(String tag, String msg); void e(String tag, String msg, Throwable tr); }