Skip to content

Commit

Permalink
forgot to commit this change, should fix issue #45
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfewer committed Aug 18, 2014
1 parent aa40bc7 commit 7a226bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion node/core/debug/logger.rb
Expand Up @@ -22,7 +22,11 @@ def use_logger?( pid )
end

def logger_file( pid )
"#{ @logdir }#{ @logdir.end_with?('\\') ? '' : '\\' }logger_#{ pid }.xml"
gen_logger_filename( "logger_#{ pid }" )
end

def gen_logger_filename( name )
"#{ @logdir }#{ @logdir.end_with?('\\') ? '' : '\\' }#{ name }.xml"
end

def loader_logger( imagebase )
Expand Down

0 comments on commit 7a226bf

Please sign in to comment.