diff --git a/lib/use_case/compat/v32.dart b/lib/use_case/compat/v32.dart index 5f36baa4..de7e7a3d 100644 --- a/lib/use_case/compat/v32.dart +++ b/lib/use_case/compat/v32.dart @@ -17,7 +17,7 @@ class CompatV32 { if (jsons == null) { return; } - _log.info("[call] Migrate Pref.accounts"); + _log.info("[migratePref] Migrate Pref.accounts"); final newJsons = []; for (final j in jsons) { newJsons.add({ @@ -29,10 +29,10 @@ class CompatV32 { } if (await pref.setStringList( "accounts2", newJsons.map((e) => jsonEncode(e)).toList())) { - _log.info("[call] Migrated ${newJsons.length} accounts"); + _log.info("[migratePref] Migrated ${newJsons.length} accounts"); await pref.remove("accounts"); } else { - _log.severe("[call] Failed while writing pref"); + _log.severe("[migratePref] Failed while writing pref"); } }