We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b1e17 commit ac4fadeCopy full SHA for ac4fade
android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageMigration.java
@@ -45,8 +45,9 @@ public static void migrate(Context context) {
45
// Create the storage file
46
ReactDatabaseSupplier.getInstance(mContext).get();
47
copyFile(new FileInputStream(expoDatabase), new FileOutputStream(mContext.getDatabasePath(ReactDatabaseSupplier.DATABASE_NAME)));
48
+ Log.v(LOG_TAG, "Migrated most recently modified database " + expoDatabase.getName() + " to RKStorage");
49
} catch (Exception e) {
- Log.v(LOG_TAG, "Failed to move scoped database");
50
+ Log.v(LOG_TAG, "Failed to migrate scoped database " + expoDatabase.getName());
51
e.printStackTrace();
52
return;
53
}
0 commit comments