Skip to content

Commit

Permalink
set true if folder already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasKaminsky committed May 15, 2017
1 parent 75ee20c commit b6968bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/com/owncloud/android/lib/common/utils/Log_OC.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ synchronized public static void startLogging(Context context) {
if (!mFolder.exists()) {
isFolderCreated = mFolder.mkdirs();
Log.d(TAG, "Log folder created at: " + mNextcloudDataFolderLog);
} else {
isFolderCreated = true;
}

try {
Expand Down

0 comments on commit b6968bb

Please sign in to comment.