diff options
| -rw-r--r-- | nimterop/cimport.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nimterop/cimport.nim b/nimterop/cimport.nim index 90b10d8..1f0de30 100644 --- a/nimterop/cimport.nim +++ b/nimterop/cimport.nim @@ -138,7 +138,7 @@ proc getToast(fullpath: string, recurse: bool = false): string = cmd.add &" --pluginSourcePath={gStateCT.pluginSourcePath.quoteShell}" cmd.add &" {fullpath.quoteShell}" - echo cmd + echo "# " & cmd # see https://github.com/nimterop/nimterop/issues/69 (result, ret) = gorgeEx(cmd, cache=getCacheValue(fullpath)) doAssert ret == 0, getToastError(result) @@ -468,7 +468,7 @@ macro cImport*(filename: static string, recurse: static bool = false): untyped = let fullpath = findPath(filename) - echo "Importing " & fullpath + echo "# Importing " & fullpath let output = getToast(fullpath, recurse) |
