lib/eco/api/session/batch/errors.rb in eco-helpers-3.0.14 vs lib/eco/api/session/batch/errors.rb in eco-helpers-3.0.15
- old
+ new
@@ -114,21 +114,21 @@
def message
msgs = strs
if msgs.empty?
- "There were no errors for the current batch '#{method}'!! ;)"
+ "There were no errors for the current batch '#{method}'!! ;) "
else
"There were #{msgs.length} errors:\n" + msgs.join("\n")
end
end
def print
msgs = strs
if msgs.empty?
log(:info) {
- "There were no errors for the current batch '#{method}'!! ;)"
+ "There were no errors for the current batch '#{method}'!! ;) "
}
else
msg = "There were #{msgs.length} errors:\n"
msg << msgs.join("\n")
log(:error) { msg }