Loading src/com/owncloud/android/lib/common/utils/Log_OC.java +3 −2 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Calendar; Loading Loading @@ -43,7 +44,7 @@ public class Log_OC { } public static void d(String TAG, String message, Exception e) { Log.d(TAG, message, e); appendLog(TAG + " : " + message + " Exception : "+ e.getStackTrace()); appendLog(TAG + " : " + message + " Exception : "+ Arrays.toString(e.getStackTrace())); } public static void e(String TAG, String message){ Log.e(TAG, message); Loading @@ -52,7 +53,7 @@ public class Log_OC { public static void e(String TAG, String message, Throwable e) { Log.e(TAG, message, e); appendLog(TAG+" : " + message +" Exception : " + e.getStackTrace()); appendLog(TAG+" : " + message +" Exception : " + Arrays.toString(e.getStackTrace())); } public static void v(String TAG, String message){ Loading Loading
src/com/owncloud/android/lib/common/utils/Log_OC.java +3 −2 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Calendar; Loading Loading @@ -43,7 +44,7 @@ public class Log_OC { } public static void d(String TAG, String message, Exception e) { Log.d(TAG, message, e); appendLog(TAG + " : " + message + " Exception : "+ e.getStackTrace()); appendLog(TAG + " : " + message + " Exception : "+ Arrays.toString(e.getStackTrace())); } public static void e(String TAG, String message){ Log.e(TAG, message); Loading @@ -52,7 +53,7 @@ public class Log_OC { public static void e(String TAG, String message, Throwable e) { Log.e(TAG, message, e); appendLog(TAG+" : " + message +" Exception : " + e.getStackTrace()); appendLog(TAG+" : " + message +" Exception : " + Arrays.toString(e.getStackTrace())); } public static void v(String TAG, String message){ Loading