syslog-ml-logger 1.6.8 → 1.7.0
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.
|
@@ -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.
|
|
9
|
+
VERSION = '1.7.0'
|
|
10
10
|
|
|
11
11
|
# From 'man syslog.h':
|
|
12
12
|
# LOG_EMERG A panic condition was reported to all processes.
|
|
@@ -117,7 +117,11 @@ class Logger::Syslog
|
|
|
117
117
|
progname = @progname
|
|
118
118
|
end
|
|
119
119
|
end
|
|
120
|
-
|
|
120
|
+
|
|
121
|
+
# breakup multiple lines into multiple syslog messages
|
|
122
|
+
message.each_line do | msg |
|
|
123
|
+
SYSLOG.send(LEVEL_LOGGER_MAP[severity], format_message(format_severity(severity), Time.now, progname, clean(msg.chop)))
|
|
124
|
+
end
|
|
121
125
|
true
|
|
122
126
|
end
|
|
123
127
|
|
|
@@ -158,4 +162,4 @@ class Logger::Syslog
|
|
|
158
162
|
return message
|
|
159
163
|
end
|
|
160
164
|
|
|
161
|
-
end
|
|
165
|
+
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: 11
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
version: 1.
|
|
8
|
+
- 7
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.7.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Daniel van den Oord;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-10-
|
|
18
|
+
date: 2012-10-16 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.
|
|
@@ -29,7 +29,7 @@ extra_rdoc_files:
|
|
|
29
29
|
files:
|
|
30
30
|
- README.rdoc
|
|
31
31
|
- lib/syslog-formatter.rb
|
|
32
|
-
- lib/syslog-logger.rb
|
|
32
|
+
- lib/syslog-ml-logger.rb
|
|
33
33
|
- test/test_syslog_logger.rb
|
|
34
34
|
homepage: https://github.com/Daniel304/syslog-ml-logger
|
|
35
35
|
licenses: []
|