We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f35d95 + c7b5b72 commit 233b2c4Copy full SHA for 233b2c4
src/models/logger.cr
@@ -16,6 +16,10 @@ class NoirLogger
16
end
17
18
def heading(message)
19
+ if @no_log
20
+ return
21
+ end
22
+
23
prefix = "★".colorize(:yellow).toggle(@color_mode)
24
STDERR.puts "#{prefix} #{message}"
25
src/noir.cr
@@ -54,7 +54,10 @@ if noir_options["exclude_codes"] != ""
54
55
56
# Run Noir
57
-banner()
+if noir_options["nolog"] == false
58
+ banner()
59
+end
60
61
app = NoirRunner.new noir_options
62
start_time = Time.monotonic
63
0 commit comments