syslog-ml-logger 1.8.2 → 1.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/syslog-ml-logger.rb +2 -2
- metadata +4 -4
data/lib/syslog-ml-logger.rb
CHANGED
@@ -6,7 +6,7 @@ class Logger::Syslog
|
|
6
6
|
include Logger::Severity
|
7
7
|
|
8
8
|
# The version of Logger::Syslog you are using.
|
9
|
-
VERSION = '1.8.
|
9
|
+
VERSION = '1.8.3'
|
10
10
|
|
11
11
|
# Max length of syslog string
|
12
12
|
MAXLENGTH = 1024
|
@@ -122,7 +122,7 @@ class Logger::Syslog
|
|
122
122
|
end
|
123
123
|
|
124
124
|
# breakup multiple lines into multiple syslog messages
|
125
|
-
message.each do | line |
|
125
|
+
message.to_s.each do | line |
|
126
126
|
cut(line).each do |msg|
|
127
127
|
SYSLOG.send(LEVEL_LOGGER_MAP[severity], format_message(format_severity(severity), Time.now, progname, clean(msg)))
|
128
128
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: syslog-ml-logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 49
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 1.8.
|
9
|
+
- 3
|
10
|
+
version: 1.8.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Daniel van den Oord;Erwin Rohde,Eric Hodel; Chris Powell; Matthew Boeh; Ian Lesperance; Dana Danger; Brian Smith; Ashley Martens
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-12-
|
18
|
+
date: 2012-12-12 00:00:00 Z
|
19
19
|
dependencies: []
|
20
20
|
|
21
21
|
description: An improved Logger replacement that logs multiple-lines to syslog. It is almost drop-in with a few caveats.
|