Skip to content

Commit e93751d

Browse files
mschochChris Anderson
authored and
Chris Anderson
committed
set log level to error for exceptions that are errors
Change-Id: Iaa76692a74cedf7c4297ce67b3e2f2b50e7ee7b4 Reviewed-on: http://review.couchbase.org/9920 Reviewed-by: Marty Schoch <[email protected]> Reviewed-by: Chris Anderson <[email protected]> Tested-by: Chris Anderson <[email protected]>
1 parent 09f98ef commit e93751d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/couchbase/android/CouchbaseInstaller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void run() {
8888
try {
8989
doInstall();
9090
} catch (IOException e) {
91-
Log.v(CouchbaseMobile.TAG, "Error installing Couchbase", e);
91+
Log.e(CouchbaseMobile.TAG, "Error installing Couchbase", e);
9292
Message.obtain(handler, CouchbaseService.ERROR, e).sendToTarget();
9393
}
9494
}
@@ -156,7 +156,7 @@ public void setInstalledFilesCRC(HashMap<String, Long> fileCRCs) throws IOExcept
156156
oos.close();
157157
fos.close();
158158
} catch (IOException e) {
159-
Log.v(CouchbaseMobile.TAG, "Exception closing installed files CRC streams");
159+
Log.e(CouchbaseMobile.TAG, "Exception closing installed files CRC streams");
160160
}
161161
}
162162
}

0 commit comments

Comments
 (0)