diff options
| author | Dan Engelbrecht <[email protected]> | 2022-12-07 11:36:54 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-07 02:36:54 -0800 |
| commit | cce239c1d535e047d412ec2ad5ed28ff30d5c955 (patch) | |
| tree | 59dc18c2c6860d40277f8067e7de6e2e73b003d7 /zen/cmds/copy.cpp | |
| parent | optimizations (#200) (diff) | |
| download | archived-zen-cce239c1d535e047d412ec2ad5ed28ff30d5c955.tar.xz archived-zen-cce239c1d535e047d412ec2ad5ed28ff30d5c955.zip | |
Zen cmd fixes (#201)
* updated drop command to support namespaces
* fixed hash command error message
* fix output of status (and top) command
* Use ZEN_CONSOLE for output in zen commands
* changelog
Diffstat (limited to 'zen/cmds/copy.cpp')
| -rw-r--r-- | zen/cmds/copy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/cmds/copy.cpp b/zen/cmds/copy.cpp index c9b40408e..f3ca242e3 100644 --- a/zen/cmds/copy.cpp +++ b/zen/cmds/copy.cpp @@ -91,7 +91,7 @@ CopyCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) CopyOptions.EnableClone = !m_NoClone; zen::CopyFile(FromPath, ToPath, CopyOptions); - ZEN_INFO("Copy completed in {}", zen::NiceTimeSpanMs(Timer.GetElapsedTimeMs())); + ZEN_CONSOLE("Copy completed in {}", zen::NiceTimeSpanMs(Timer.GetElapsedTimeMs())); } return 0; |