Navigation Menu

Skip to content

Commit

Permalink
logger: add missing warn method
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 28, 2014
1 parent b39906b commit fc96d9e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/droonga/logger.rb
Expand Up @@ -50,6 +50,10 @@ def info(message, data={})
log(:info, message, data)
end

def warn(message, data={})
log(:warn, message, data)
end

def error(message, data={})
log(:error, message, data)
end
Expand Down

0 comments on commit fc96d9e

Please sign in to comment.