1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-08 00:16:09 +00:00

apply codestyle request for complete file

This commit is contained in:
Hannes Achleitner 2019-01-19 23:28:22 +01:00
parent dffd5bed9f
commit 6560aa987d

View File

@ -39,10 +39,12 @@ public class Log_OC {
Log.d(TAG, message);
appendLog(TAG + " : " + message);
}
public static void d(String TAG, String message, Exception e) {
Log.d(TAG, message, e);
appendLog(TAG + " : " + message + " Exception : " + e.getStackTrace());
}
public static void e(String TAG, String message) {
Log.e(TAG, message);
appendLog(TAG + " : " + message);
@ -65,6 +67,7 @@ public class Log_OC {
/**
* Start doing logging
*
* @param storagePath : directory for keeping logs
*/
synchronized public static void startLogging(String storagePath) {
@ -107,8 +110,9 @@ public class Log_OC {
synchronized public static void stopLogging() {
try {
if (mBuf != null)
if (mBuf != null) {
mBuf.close();
}
isEnabled = false;
mLogFile = null;
@ -155,6 +159,7 @@ public class Log_OC {
/**
* Append to the log file the info passed
*
* @param text : text for adding to the log file
*/
synchronized private static void appendLog(String text) {