mirror of
https://github.com/Alexey71/opera-proxy.git
synced 2026-05-13 14:11:00 +00:00
lower log level for cred update errors
This commit is contained in:
@@ -235,7 +235,7 @@ func run() int {
|
|||||||
defer cl()
|
defer cl()
|
||||||
err := seclient.Login(reqCtx)
|
err := seclient.Login(reqCtx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
mainLogger.Critical("Login refresh failed: %v", err)
|
mainLogger.Error("Login refresh failed: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
mainLogger.Info("Login refreshed.")
|
mainLogger.Info("Login refreshed.")
|
||||||
@@ -245,7 +245,7 @@ func run() int {
|
|||||||
defer cl()
|
defer cl()
|
||||||
err = seclient.DeviceGeneratePassword(reqCtx)
|
err = seclient.DeviceGeneratePassword(reqCtx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
mainLogger.Critical("Device password refresh failed: %v", err)
|
mainLogger.Error("Device password refresh failed: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
mainLogger.Info("Device password refreshed.")
|
mainLogger.Info("Device password refreshed.")
|
||||||
|
|||||||
Reference in New Issue
Block a user