Skip to content

Commit

Permalink
revert forgotten logging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamVe committed May 29, 2024
1 parent 5fd93a3 commit 5e9dfbc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ class MainActivity : FlutterFragmentActivity() {
deviceManager.setDeviceInfo(deviceInfo)

if (deviceInfo == null) {
logger.debug("Device info is null")
return
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,10 @@ class OathManager(

refreshJob = coroutineScope.launch {
val delayMs = earliest - now
logger.debug("XXX Will execute refresh in {}ms", delayMs)
logger.debug("Will execute refresh in {}ms", delayMs)
if (delayMs > 0) {
delay(delayMs)
}
logger.debug("XXX {}ms later will refresh!", delayMs)
ensureActive()
val currentState = lifecycleOwner.lifecycle.currentState
if (currentState.isAtLeast(Lifecycle.State.STARTED)) {
requestRefresh()
Expand Down

0 comments on commit 5e9dfbc

Please sign in to comment.