summaryrefslogtreecommitdiffhomepage
path: root/android/tile/src
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2024-06-25 16:54:06 +0200
committerAlbin <albin@mullvad.net>2024-06-26 12:59:29 +0200
commita3fc3d40a2467c21411e6d87b301d75c2c596793 (patch)
treece7dcba43fea69bea68758ee9d0769d571e7181a /android/tile/src
parent2b6c810202964bd24efd5efbc5be52be1eab87ef (diff)
downloadmullvadvpn-a3fc3d40a2467c21411e6d87b301d75c2c596793.tar.xz
mullvadvpn-a3fc3d40a2467c21411e6d87b301d75c2c596793.zip
Change app log calls to info severity
Diffstat (limited to 'android/tile/src')
-rw-r--r--android/tile/src/main/kotlin/net/mullvad/mullvadvpn/tile/MullvadTileService.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/tile/src/main/kotlin/net/mullvad/mullvadvpn/tile/MullvadTileService.kt b/android/tile/src/main/kotlin/net/mullvad/mullvadvpn/tile/MullvadTileService.kt
index 5998d75920..aef6f3505e 100644
--- a/android/tile/src/main/kotlin/net/mullvad/mullvadvpn/tile/MullvadTileService.kt
+++ b/android/tile/src/main/kotlin/net/mullvad/mullvadvpn/tile/MullvadTileService.kt
@@ -91,7 +91,7 @@ class MullvadTileService : TileService() {
val isSetup = VpnService.prepare(applicationContext) == null
// TODO This logic should be more advanced, we should ensure user has an account setup etc.
if (!isSetup) {
- Logger.d("TileService: VPN service not setup, starting main activity")
+ Logger.i("TileService: VPN service not setup, starting main activity")
val intent =
Intent().apply {
@@ -105,7 +105,7 @@ class MullvadTileService : TileService() {
startActivityAndCollapseCompat(intent)
return
} else {
- Logger.d("TileService: VPN service is setup")
+ Logger.i("TileService: VPN service is setup")
}
val intent =
Intent().apply {