Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 7d72277

Browse files
committed
fix: wrong log messages
Signed-off-by: Daniele Sergio <daniele.sergio@kynetics.com>
1 parent 43dfac5 commit 7d72277

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/kotlin/com/kynetics/updatefactory/ddiclient/core/actors/DeploymentManager.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ private constructor(scope: ActorScope) : AbstractActor(scope) {
171171
when (msg) {
172172

173173
is Message.UpdateFailed -> {
174-
LOG.error("update failed")
174+
LOG.info("update failed")
175175
parent!!.send(msg)
176176
}
177177

@@ -219,7 +219,6 @@ private constructor(scope: ActorScope) : AbstractActor(scope) {
219219
actorOf("updateManager") { UpdateManager.of(it) }
220220
become(beginningReceive(State()))
221221
channel.invokeOnClose {
222-
LOG.error("invokeOnClose ${waitingAuthJob == null}")
223222
waitingAuthJob?.cancel()
224223
}
225224
}

0 commit comments

Comments
 (0)