diff options
author | Saku Ytti <saku@ytti.fi> | 2013-04-27 12:16:55 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2013-04-27 12:16:55 +0300 |
commit | 70cb33c214ced1235b8e6077e11177a3ba6b7977 (patch) | |
tree | 20d0add3984642be00c1685ac0e19e50e2e4288c /bin | |
parent | 5fca52c86b50dd9754546902530530b9c0f6216b (diff) |
Fix timeout on receiving command from input
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oxidized | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/oxidized b/bin/oxidized index 564bb16..aee703f 100755 --- a/bin/oxidized +++ b/bin/oxidized @@ -8,7 +8,7 @@ rescue => e open Oxidized::Config::Crash, 'w' do |file| file.puts '-' * 50 file.puts Time.now.utc - file.puts e.message + file.puts e.message + ' [' + e.class.to_s + ']' file.puts '-' * 50 file.puts e.backtrace file.puts '-' * 50 |