Remove useless log.

This commit is contained in:
Benoit Marty 2024-02-27 10:41:14 +01:00
parent cbf6e2383d
commit 38bb166298

View file

@ -103,7 +103,6 @@ class DatabaseSessionStore @Inject constructor(
}
override fun sessionsFlow(): Flow<List<SessionData>> {
Timber.w("Observing session list!")
return database.sessionDataQueries.selectAll()
.asFlow()
.mapToList(dispatchers.io)