Skip to content

Commit

Permalink
LogSaver: 開発の邪魔なのでコメントアウトしてあったエラー処理を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
koi-chan committed Mar 30, 2016
1 parent 9572d9a commit 1b810cc
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions lib/rgrb/plugin/log_saver/irc_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,9 @@ def database_uri(config)
# @option [Hash<String>] :message IRCコマンドの引数
# @return [void]
def db_insert(log)
# begin
db = Database::Log.new
db.attributes = log
db.save
# rescue => e
# STDERR.puts e
# end
db = Database::Log.new
db.attributes = log
db.save
end
private :db_insert

Expand Down

0 comments on commit 1b810cc

Please sign in to comment.