Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 678a75c

Browse files
author
hideki
committed
In database directory, non view database could exist. So this is not error.
1 parent 82d02c2 commit 678a75c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/couchbase/lite/store/ForestDBStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ public List<String> getAllViewNames() {
10591059
try {
10601060
result.add(ForestDBViewStore.fileNameToViewName(filename));
10611061
} catch (CouchbaseLiteException e) {
1062-
Log.w(TAG, "Error in fileNameToViewName(): filename=" + filename, e);
1062+
Log.i(TAG, "Invalid filename as view name: filename=" + filename);
10631063
}
10641064
}
10651065
return result;

0 commit comments

Comments
 (0)