Repository URL to install this package:
|
Version:
0.1.8 ▾
|
module Quickbooks
module Util
module Logging
def log(msg)
::Quickbooks.log(msg)
end
def log_xml(str)
if ::Quickbooks.log_xml_pretty_print? && !(str and str.empty?)
Nokogiri::XML(str).to_xml
else
str
end
rescue => e
e
end
end
end
end