logging 1.4.2 → 1.4.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/History.txt +5 -0
- data/lib/logging/appenders/rolling_file.rb +3 -1
- data/version.txt +1 -1
- metadata +5 -5
data/History.txt
CHANGED
|
@@ -176,6 +176,8 @@ module Logging::Appenders
|
|
|
176
176
|
|
|
177
177
|
private
|
|
178
178
|
|
|
179
|
+
alias :_write :write
|
|
180
|
+
|
|
179
181
|
# call-seq:
|
|
180
182
|
# write( event )
|
|
181
183
|
#
|
|
@@ -188,7 +190,7 @@ module Logging::Appenders
|
|
|
188
190
|
@layout.format(event) : event.to_s
|
|
189
191
|
return if str.empty?
|
|
190
192
|
|
|
191
|
-
@io.flock_sh {
|
|
193
|
+
@io.flock_sh { _write(str) }
|
|
192
194
|
|
|
193
195
|
if roll_required?
|
|
194
196
|
@io.flock? {
|
data/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.4.
|
|
1
|
+
1.4.3
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 4
|
|
8
|
-
-
|
|
9
|
-
version: 1.4.
|
|
8
|
+
- 3
|
|
9
|
+
version: 1.4.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Tim Pease
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-05-
|
|
17
|
+
date: 2010-05-31 00:00:00 -06:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -83,8 +83,8 @@ dependencies:
|
|
|
83
83
|
segments:
|
|
84
84
|
- 3
|
|
85
85
|
- 4
|
|
86
|
-
-
|
|
87
|
-
version: 3.4.
|
|
86
|
+
- 3
|
|
87
|
+
version: 3.4.3
|
|
88
88
|
type: :development
|
|
89
89
|
version_requirements: *id005
|
|
90
90
|
description: |-
|