blinkbox-common_logging 0.5.1 → 0.5.2
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/CHANGELOG.md +8 -0
- data/VERSION +1 -1
- data/lib/blinkbox/common_logging.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTVjYTc0ZWNiNzNiMDdhNDFkY2YyYTg5OTA5MGQyZTgwMmYyNDYyNw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZGU0MGQ2ODllMGRmNjM2N2M1NzdiYmIxMDdkNzliMDgzMDQ2Yjk4Yg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjI5M2M3YzRiOGU0MjQzMzQyOTAxY2NkODA1NjlhMzY1MGU5NWY1NDgwMzQx
|
|
10
|
+
YzUzNmIxZDRhNzRhZGZhNzcyOGNlMThkM2EyMDY3OGQ2YzM2Mjg1M2U0YTkx
|
|
11
|
+
ZWEwNWRhYTcyZjQxMjI3YTNhNDU3MzNiNjE2YmZkMmZjYmI1YTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZGYyNjBkZGI5Y2M5MjNmOTE2OWVjMTcwMmJmMjI1M2UyMzMzNjdmZDVkZjYy
|
|
14
|
+
Y2ZiZDUzMzA0ZjU2YTU2OGE2MTdiYTcyNDY1ZjRiNGI3MDU4OGI0NjM5Mzdk
|
|
15
|
+
M2QyODRlOTBjMjhhMTI4MDkzYWViYTkzNDUzOWE4NDI1ZTI1Yjc=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## 0.5.2 (2015-01-29 12:13:21)
|
|
4
|
+
|
|
5
|
+
Unknown graylog server hostname fix
|
|
6
|
+
|
|
7
|
+
### Bug fixes
|
|
8
|
+
|
|
9
|
+
- Monkey patch to allow execution of code when the given graylog server name is unresolvable.
|
|
10
|
+
|
|
3
11
|
## Open Source release (2015-01-28 14:11:21)
|
|
4
12
|
|
|
5
13
|
Today we have decided to publish parts of our codebase on Github under the [MIT licence](LICENCE). The licence is very permissive, but we will always appreciate hearing if and where our work is used!
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.2
|
|
@@ -79,7 +79,11 @@ module Blinkbox
|
|
|
79
79
|
@stdout_logger.send(level, msg)
|
|
80
80
|
end
|
|
81
81
|
msg.extend(ExtraHashMethods).shallow! if msg.is_a?(Hash)
|
|
82
|
-
|
|
82
|
+
begin
|
|
83
|
+
super(message_level, msg)
|
|
84
|
+
rescue SocketError
|
|
85
|
+
# Cannot send data to unknown host, ignoring
|
|
86
|
+
end
|
|
83
87
|
end
|
|
84
88
|
end
|
|
85
89
|
end
|