lib/bolt/outputter/logger.rb in bolt-2.23.0 vs lib/bolt/outputter/logger.rb in bolt-2.24.0
- old
+ new
@@ -38,16 +38,16 @@
@logger.info("Finished: #{description} with #{failures} failure#{plural} in #{duration.round(2)} sec")
end
def log_plan_start(event)
plan = event[:plan]
- @logger.notice("Starting: plan #{plan}")
+ @logger.info("Starting: plan #{plan}")
end
def log_plan_finish(event)
plan = event[:plan]
duration = event[:duration]
- @logger.notice("Finished: plan #{plan} in #{duration.round(2)} sec")
+ @logger.info("Finished: plan #{plan} in #{duration.round(2)} sec")
end
end
end
end