logjam_agent 0.8.0 → 0.8.1
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.
- checksums.yaml +8 -8
- data/lib/logjam_agent/syslog_like_formatter.rb +1 -1
- data/lib/logjam_agent/version.rb +1 -1
- metadata +1 -3
- data/init.rb +0 -3
- data/rails/init.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTM2MDVkZTYyNDBiN2IzZTM1NTEwZGQ3ODhiMGVjNDFhMWRmOTlmYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTE0MTY2OTE4NGE2NTJlMGM2YzdiYjUxMjMxMzRlYWQwMzgwNTM2MQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGRiNmNlNjBmMjU5NzQ1MGI2MDY5ZjlhNTU0M2Y5M2FjOTNlNjNhNTkyY2Jj
|
|
10
|
+
ZDJiNWVjMWFhNTRhYmQ4M2YzODM0Y2Q3YzkxYmNiZDA1NzQyMGUzODBkOGFm
|
|
11
|
+
OWM0ZTJiMTA3MjhlNzI3NjQ2ZGZhNzdhOWFhZDllMTFkYzA2ZDg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjZiZDE4ZjBiZjkyY2VjMTk5OTllOGZiMmZiZDVjZTUwNTQ4ZDg3ZmU0MTQ4
|
|
14
|
+
OGE2MmQ5MTgwMDYzN2EyMTVkNjBkZjEyNzUyNTk0MzRmMDk3NDQxNGRkMjAw
|
|
15
|
+
NDBlNWVhNjEwYTc3NmRjMGFiOGQ0MDhiMGU4OGNmYjJhZWQ2NzA=
|
|
@@ -33,7 +33,7 @@ module LogjamAgent
|
|
|
33
33
|
"#{format_severity(severity)} #{format_time(timestamp)}#{render_attributes}#{format_host_info(progname)}: #{format_message(msg)}#{@newline}"
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
if Rails.env.development?
|
|
36
|
+
if !defined?(Rails) || Rails.env.development?
|
|
37
37
|
def format_host_info(progname); ""; end
|
|
38
38
|
else
|
|
39
39
|
def format_host_info(progname)
|
data/lib/logjam_agent/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logjam_agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefan Kaes
|
|
@@ -91,7 +91,6 @@ files:
|
|
|
91
91
|
- Gemfile
|
|
92
92
|
- README.rdoc
|
|
93
93
|
- Rakefile
|
|
94
|
-
- init.rb
|
|
95
94
|
- lib/logjam_agent.rb
|
|
96
95
|
- lib/logjam_agent/amqp_forwarder.rb
|
|
97
96
|
- lib/logjam_agent/buffered_logger.rb
|
|
@@ -104,7 +103,6 @@ files:
|
|
|
104
103
|
- lib/logjam_agent/version.rb
|
|
105
104
|
- lib/logjam_agent/zmq_forwarder.rb
|
|
106
105
|
- logjam_agent.gemspec
|
|
107
|
-
- rails/init.rb
|
|
108
106
|
homepage: ''
|
|
109
107
|
licenses: []
|
|
110
108
|
metadata: {}
|
data/init.rb
DELETED
data/rails/init.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../init.rb', __FILE__)
|