mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 17:23:36 +02:00
cmds and lib: Don't print() log messages
print() should be used to output information requested by a certain command, but not for logging the process to achieve it. log() should be used for the latter. The current code has the distinction not down clearly, fix that. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
6ba76ea44b
commit
e589cdbdbf
1 changed files with 1 additions and 1 deletions
|
|
@ -187,7 +187,7 @@ class CmdBuild(Cmd): # export
|
||||||
|
|
||||||
await run_make_on_modules(modules, order, target)
|
await run_make_on_modules(modules, order, target)
|
||||||
|
|
||||||
log(NOTICE, 'Build done at {}' % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")))
|
log(NOTICE, 'Build done at %s' % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")))
|
||||||
|
|
||||||
dep_cache: dict[dict[str, str]] = {}
|
dep_cache: dict[dict[str, str]] = {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue