# File lib/debugger/xml/vim/logger.rb, line 5definitialize(logger_file)
@logger_file = logger_fileend
Public Instance Methods
puts(string)click to toggle source
# File lib/debugger/xml/vim/logger.rb, line 9defputs(string)
File.open(@logger_file, 'a') do|f|# match vim redir style new lines, rather than trailingf<<"\ndebugger-xml, #{Time.now.strftime("%H:%M:%S")} : #{string.chomp}"endend