This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
start()
public
Start the application. Return the status code.
# File lib/logger.rb, line 780
def start
status = -1
begin
log(INFO, "Start of #{ @appname }.")
status = run
rescue
log(FATAL, "Detected an exception. Stopping ... #{$!} (#{$!.class})\n" << [email protected]("\n"))
ensure
log(INFO, "End of #{ @appname }. (status: #{ status.to_s })")
end
status
end