[Store] Better debugs

This commit is contained in:
Christian Pauly 2019-07-26 10:56:27 +02:00
parent 9118311844
commit d10a064dfe
1 changed files with 4 additions and 2 deletions

View File

@ -59,7 +59,8 @@ class Store {
onCreate: (Database db, int version) async {
await createTables(db);
}, onUpgrade: (Database db, int oldVersion, int newVersion) async {
print("Migrate databse from version $oldVersion to $newVersion");
if (client.debug)
("[Store] Migrate databse from version $oldVersion to $newVersion");
if (oldVersion != newVersion) {
await db.execute("DROP TABLE IF EXISTS Rooms");
await db.execute("DROP TABLE IF EXISTS Participants");
@ -90,7 +91,8 @@ class Store {
? null
: clientList["prev_batch"],
);
print("Restore client credentials of ${client.userID}");
if (client.debug)
print("[Store] Restore client credentials of ${client.userID}");
} else
client.connection.onLoginStateChanged.add(LoginState.loggedOut);
}