summaryrefslogtreecommitdiff
path: root/application.rb
diff options
context:
space:
mode:
Diffstat (limited to 'application.rb')
-rwxr-xr-xapplication.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.rb b/application.rb
index 10c8fe6..3c05575 100755
--- a/application.rb
+++ b/application.rb
@@ -15,7 +15,7 @@ require "example.rb"
get '/examples/?' do
- LOGGER.info "list examples"
+ LOGGER.debug "list examples"
if request.env['HTTP_ACCEPT'] =~ /text\/html/
content_type "text/html"
@@ -27,7 +27,7 @@ get '/examples/?' do
end
get '/prepare_examples/?' do
- LOGGER.info "prepare examples"
+ LOGGER.debug "prepare examples"
content_type "text/plain"
return_task(Example.prepare_example_resources)
end