Fix missing return statement

This commit is contained in:
Arnaud 2025-10-27 10:52:16 +01:00 committed by Eric
parent d9f53d0056
commit 58b8676d3e
No known key found for this signature in database

View File

@ -117,6 +117,7 @@ proc process*(
if res.isErr:
error "Failed to get PEER.", error = res.error
return err($res.error)
return res
of NodeDebugMsgType.LOG_LEVEL:
let res = (await updateLogLevel(codex, self.logLevel))
if res.isErr: