@@ -128,7 +128,7 @@ internal class SessionLifecycleService : Service() {
128
128
/* * Generates a new session id and sends it everywhere it's needed */
129
129
private fun newSession () {
130
130
SessionGenerator .instance.generateNewSession()
131
- Log .d(TAG , " Generated new session ${ SessionGenerator .instance.currentSession.sessionId} " )
131
+ Log .d(TAG , " Generated new session. " )
132
132
broadcastSession()
133
133
SessionDatastore .instance.updateSessionId(SessionGenerator .instance.currentSession.sessionId)
134
134
}
@@ -138,7 +138,7 @@ internal class SessionLifecycleService : Service() {
138
138
* connected clients.
139
139
*/
140
140
private fun broadcastSession () {
141
- Log .d(TAG , " Broadcasting new session: ${ SessionGenerator .instance.currentSession} " )
141
+ Log .d(TAG , " Broadcasting new session" )
142
142
SessionFirelogPublisher .instance.logSession(SessionGenerator .instance.currentSession)
143
143
// Create a defensive copy because DeadObjectExceptions on send will modify boundClients
144
144
val clientsToSend = ArrayList (boundClients)
@@ -151,7 +151,7 @@ internal class SessionLifecycleService : Service() {
151
151
} else {
152
152
// Send the value from the datastore before the first foregrounding it exists
153
153
val storedSession = SessionDatastore .instance.getCurrentSessionId()
154
- Log .d(TAG , " App has not yet foregrounded. Using previously stored session: $storedSession " )
154
+ Log .d(TAG , " App has not yet foregrounded. Using previously stored session. " )
155
155
storedSession?.let { sendSessionToClient(client, it) }
156
156
}
157
157
}
0 commit comments