Skip to content

Commit

Permalink
refactor: reverting docker inspect failure log level
Browse files Browse the repository at this point in the history
  • Loading branch information
miki725 committed Mar 21, 2024
1 parent 9c24327 commit 7079c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/codecDocker.nim
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ proc inspectImage(chalk: ChalkObj): bool {.discardable.} =
cmdOut = runDockerGetEverything(@["inspect", chalk.name])

if cmdOut.getExit() != 0:
trace(chalk.name & ": Docker inspect image failed: " & cmdOut.getStdErr())
info(chalk.name & ": Docker inspect image failed: " & cmdOut.getStdErr())
return false

let contents = cmdOut.getStdOut().parseJson().getElems()[0]
Expand Down

0 comments on commit 7079c87

Please sign in to comment.