# File lib/deep_test/ui/console.rb, line 15
15:       def distributed_failover_to_local(method, exception)
16:         width = 70
17:         puts " Distributed DeepTest Failure ".center(width, '*')
18:         puts "*   Failed during #{method}".ljust(width - 1) + "*"
19:         puts "* #{exception.message}".ljust(width - 1) + "*"
20:         puts "* Failing over to local run".ljust(width - 1) + "*"
21:         puts "*" * width
22:       end