From 568c878b0a32202c416bc06782f8b212eb2d5c93 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 7 Mar 2014 17:33:02 -0600 Subject: [PATCH] Print loader class name in debug mode --- Library/Homebrew/formulary.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 8baf95b1b8..fd96b5f708 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -52,7 +52,7 @@ class Formulary end unless have_klass - puts "#{$0}: loading #{path}" if ARGV.debug? + puts "#{$0} (#{self.class.name}): loading #{path}" if ARGV.debug? begin require path rescue NoMethodError