Java Code Examples for com.elvishew.xlog.XLog#init()
The following examples show how to use
com.elvishew.xlog.XLog#init() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LogUtils.java From MiPushFramework with GNU General Public License v3.0 | 6 votes |
public static void init (@NonNull Context context) { int logLevel = LogLevel.INFO; if (BuildConfig.DEBUG) { logLevel = LogLevel.ALL; } LogConfiguration configuration = new LogConfiguration.Builder() .tag("Xmsf") .logLevel(logLevel) .jsonFormatter(new DefaultJsonFormatter()) .xmlFormatter(new DefaultXmlFormatter()) .stackTraceFormatter(new DefaultStackTraceFormatter()) .build(); Printer androidPrinter = new AndroidPrinter(); Printer filePrinter = new FilePrinter.Builder(LogUtils.getLogFolder(context)) .fileNameGenerator(new DateFileNameGenerator()) .cleanStrategy(new FileLastModifiedCleanStrategy(7 * 24 * 60 * 60 * 1000 /* 7 days */)) .build(); XLog.init(configuration, androidPrinter, filePrinter); }
Example 2
Source File: BasicProject.java From BaseProject with MIT License | 6 votes |
private void setConfig() { if (null != mExceptionHandler) { CrashHandler.getInstance(mExceptionHandler); } if (null != mPrinters && null != mLogConfiguration) { XLog.init(mLogConfiguration, mPrinters); } else if (null != mLogLevel && null != mPrinters) { XLog.init(mLogLevel, mPrinters); } else if (null != mPrinters) { XLog.init(mPrinters); } else if (null != mLogConfiguration) { XLog.init(mLogConfiguration); } else if (null != mLogLevel) { XLog.init(mLogLevel); } else { XLog.init(); } }
Example 3
Source File: BasicProject.java From BaseProject with MIT License | 6 votes |
private void setConfig() { if (!TextUtils.isEmpty(mRootDirectoryName)) { SDCardUtil.setRootDirName(mRootDirectoryName); } SDCardUtil.initDir(); if (null != mExceptionHandler) { CrashHandler.getInstance(mExceptionHandler); } if (null != mPrinters && null != mLogConfiguration) { XLog.init(mLogConfiguration, mPrinters); } else if (null != mLogLevel && null != mPrinters) { XLog.init(mLogLevel, mPrinters); } else if (null != mPrinters) { XLog.init(mPrinters); } else if (null != mLogConfiguration) { XLog.init(mLogConfiguration); } else if (null != mLogLevel) { XLog.init(mLogLevel); } else { XLog.init(); } }
Example 4
Source File: BaseApp.java From PhotoOut with Apache License 2.0 | 5 votes |
@Override public void onCreate() { super.onCreate(); PhotoUtil.init(getApplicationContext(),new FrescoIniter()); //Logger.initialize(new Settings()); XLog.init(LogLevel.ALL); }
Example 5
Source File: AndroidPrinterTest.java From xLog with Apache License 2.0 | 5 votes |
@Before public void setup() { XLogUtil.beforeTest(); XLog.init(LogLevel.ALL, new AndroidPrinter() { @Override void printChunk(int logLevel, String tag, String msg) { logContainer.add(new LogItem(logLevel, tag, msg)); } }); }
Example 6
Source File: XLogSampleApplication.java From xLog with Apache License 2.0 | 4 votes |
/** * Initialize XLog. */ private void initXlog() { LogConfiguration config = new LogConfiguration.Builder() .logLevel(BuildConfig.DEBUG ? LogLevel.ALL // Specify log level, logs below this level won't be printed, default: LogLevel.ALL : LogLevel.NONE) .tag(getString(R.string.global_tag)) // Specify TAG, default: "X-LOG" // .t() // Enable thread info, disabled by default // .st(2) // Enable stack trace info with depth 2, disabled by default // .b() // Enable border, disabled by default // .jsonFormatter(new MyJsonFormatter()) // Default: DefaultJsonFormatter // .xmlFormatter(new MyXmlFormatter()) // Default: DefaultXmlFormatter // .throwableFormatter(new MyThrowableFormatter()) // Default: DefaultThrowableFormatter // .threadFormatter(new MyThreadFormatter()) // Default: DefaultThreadFormatter // .stackTraceFormatter(new MyStackTraceFormatter()) // Default: DefaultStackTraceFormatter // .borderFormatter(new MyBoardFormatter()) // Default: DefaultBorderFormatter // .addObjectFormatter(AnyClass.class, // Add formatter for specific class of object // new AnyClassObjectFormatter()) // Use Object.toString() by default .addInterceptor(new BlacklistTagsFilterInterceptor( // Add blacklist tags filter "blacklist1", "blacklist2", "blacklist3")) // .addInterceptor(new WhitelistTagsFilterInterceptor( // Add whitelist tags filter // "whitelist1", "whitelist2", "whitelist3")) // .addInterceptor(new MyInterceptor()) // Add a log interceptor .build(); Printer androidPrinter = new AndroidPrinter(); // Printer that print the log using android.util.Log Printer filePrinter = new FilePrinter // Printer that print the log to the file system .Builder(new File(Environment.getExternalStorageDirectory(), "xlogsample").getPath()) // Specify the path to save log file .fileNameGenerator(new DateFileNameGenerator()) // Default: ChangelessFileNameGenerator("log") // .backupStrategy(new MyBackupStrategy()) // Default: FileSizeBackupStrategy(1024 * 1024) // .cleanStrategy(new FileLastModifiedCleanStrategy(MAX_TIME)) // Default: NeverCleanStrategy() .flattener(new ClassicFlattener()) // Default: DefaultFlattener .build(); XLog.init( // Initialize XLog config, // Specify the log configuration, if not specified, will use new LogConfiguration.Builder().build() androidPrinter, // Specify printers, if no printer is specified, AndroidPrinter(for Android)/ConsolePrinter(for java) will be used. filePrinter); // For future usage: partial usage in MainActivity. globalFilePrinter = filePrinter; }