summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rake_helpers/code_statistics.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rake_helpers/code_statistics.rb b/rake_helpers/code_statistics.rb
index 09463bf..595848f 100644
--- a/rake_helpers/code_statistics.rb
+++ b/rake_helpers/code_statistics.rb
@@ -58,7 +58,7 @@ private
stats = Hash.new 0
Dir[directory].each do |file_name|
- p "Scanning #{file_name}..." if $DEBUG
+ p "Scanning #{file_name}..." if $VERBOSE
next unless file_name =~ pattern
lines = codelines = classes = modules = methods = 0