lumberjack_mongo_device 1.0.0 → 1.0.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.
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/lib/lumberjack_mongo_device.rb +10 -3
- data/spec/lumberjack_mongo_device_spec.rb +1 -1
- data/spec/tmp/db/test.0 +0 -0
- data/spec/tmp/db/test.ns +0 -0
- data/spec/tmp/mongo.log +335 -249
- metadata +5 -5
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake'
|
3
|
-
require '
|
4
|
-
require '
|
3
|
+
require 'rubygems/package_task'
|
4
|
+
require 'rdoc/task'
|
5
5
|
|
6
6
|
desc 'Default: run unit tests.'
|
7
7
|
task :default => :test
|
@@ -42,7 +42,7 @@ spec_file = File.expand_path('../lumberjack_mongo_device.gemspec', __FILE__)
|
|
42
42
|
if File.exist?(spec_file)
|
43
43
|
spec = eval(File.read(spec_file))
|
44
44
|
|
45
|
-
|
45
|
+
Gem::PackageTask.new(spec) do |p|
|
46
46
|
p.gem_spec = spec
|
47
47
|
end
|
48
48
|
Rake.application["package"].prerequisites.unshift("rbx:delete_rbc_files")
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
@@ -20,13 +20,13 @@ module Lumberjack
|
|
20
20
|
UNIT_OF_WORK_ID = "unit_of_work_id"
|
21
21
|
MESSAGE = "message"
|
22
22
|
|
23
|
-
DEFAULT_BUFFER_SIZE =
|
23
|
+
DEFAULT_BUFFER_SIZE = 0
|
24
24
|
|
25
25
|
# Get the MongoDB collection that is being written to.
|
26
26
|
attr_reader :collection
|
27
27
|
|
28
28
|
# The size of the internal buffer. Log entries are buffered so they can be sent to MongoDB in batches for efficiency.
|
29
|
-
|
29
|
+
attr_reader :buffer_size
|
30
30
|
|
31
31
|
# Initialize the device by passing in either a Mongo::Collection object or a hash of options
|
32
32
|
# to create the collection. Available options are:
|
@@ -39,7 +39,7 @@ module Lumberjack
|
|
39
39
|
# * <tt>:password</tt> - The password to authenticate with for database connections (optional).
|
40
40
|
# * <tt>:max</tt> - If the collection does not aleady exist it will be capped at this number of records.
|
41
41
|
# * <tt>:size</tt> - If the collection does not aleady exist it will be capped at this size in bytes.
|
42
|
-
# * <tt>:buffer_size</tt> - The number of entries that will be buffered before they are sent to MongoDB.
|
42
|
+
# * <tt>:buffer_size</tt> - The number of entries that will be buffered before they are sent to MongoDB. Default is not to buffer.
|
43
43
|
#
|
44
44
|
# If the collection does not already exist, it will be created. If either the <tt>:max</tt> or <tt>:size</tt>
|
45
45
|
# options are provided, it will be created as a capped collection. Indexes will be created on +unit_of_work_id+
|
@@ -84,6 +84,13 @@ module Lumberjack
|
|
84
84
|
@lock = Mutex.new
|
85
85
|
end
|
86
86
|
|
87
|
+
# Set the buffer size in bytes. The device will only be physically written to when the buffer size
|
88
|
+
# is exceeded.
|
89
|
+
def buffer_size=(value)
|
90
|
+
@buffer_size = value
|
91
|
+
flush
|
92
|
+
end
|
93
|
+
|
87
94
|
def write(entry)
|
88
95
|
@lock.synchronize do
|
89
96
|
@buffer << entry
|
@@ -108,7 +108,7 @@ describe Lumberjack::MongoDevice do
|
|
108
108
|
|
109
109
|
context "buffering" do
|
110
110
|
it "should buffer log entries and insert them in batches" do
|
111
|
-
device = Lumberjack::MongoDevice.new(:db => "test", :collection => "log")
|
111
|
+
device = Lumberjack::MongoDevice.new(:db => "test", :collection => "log", :buffer_size => 32767)
|
112
112
|
device.write(entry_1)
|
113
113
|
device.write(entry_2)
|
114
114
|
device.write(entry_3)
|
data/spec/tmp/db/test.0
CHANGED
Binary file
|
data/spec/tmp/db/test.ns
CHANGED
Binary file
|
data/spec/tmp/mongo.log
CHANGED
@@ -1,253 +1,339 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
1
|
+
Thu Jun 23 21:58:10 MongoDB starting : pid=80844 port=27017 dbpath=/Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db 64-bit
|
2
|
+
Thu Jun 23 21:58:10 db version v1.6.5, pdfile version 4.5
|
3
|
+
Thu Jun 23 21:58:10 git version: 0eb017e9b2828155a67c5612183337b89e12e291
|
4
|
+
Thu Jun 23 21:58:10 sys info: Darwin erh2.10gen.cc 9.6.0 Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1/RELEASE_I386 i386 BOOST_LIB_VERSION=1_40
|
5
|
+
Thu Jun 23 21:58:10 [initandlisten] waiting for connections on port 27017
|
6
|
+
Thu Jun 23 21:58:10 [initandlisten] connection accepted from 127.0.0.1:56584 #1
|
7
|
+
Thu Jun 23 21:58:10 [initandlisten] connection accepted from 127.0.0.1:56587 #2
|
8
|
+
Thu Jun 23 21:58:10 [initandlisten] connection accepted from 127.0.0.1:56590 #3
|
9
|
+
Thu Jun 23 21:58:10 [initandlisten] connection accepted from 127.0.0.1:56593 #4
|
10
|
+
Thu Jun 23 21:58:10 [conn1] end connection 127.0.0.1:56584
|
11
|
+
Thu Jun 23 21:58:10 [conn3] end connection 127.0.0.1:56590
|
12
|
+
Thu Jun 23 21:58:10 [conn2] end connection 127.0.0.1:56587
|
13
|
+
Thu Jun 23 21:58:10 allocating new datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.ns, filling with zeroes...
|
14
|
+
Thu Jun 23 21:58:10 done allocating datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.ns, size: 16MB, took 0.009 secs
|
15
|
+
Thu Jun 23 21:58:10 allocating new datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.0, filling with zeroes...
|
16
|
+
Thu Jun 23 21:58:10 done allocating datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.0, size: 64MB, took 0.113 secs
|
17
|
+
Thu Jun 23 21:58:12 allocating new datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.1, filling with zeroes...
|
18
|
+
Thu Jun 23 21:58:12 [conn4] building new index on { _id: 1 } for test.log
|
19
|
+
Thu Jun 23 21:58:12 [conn4] done for 0 records 0.001secs
|
20
|
+
Thu Jun 23 21:58:12 [conn4] insert test.log 1526ms
|
21
|
+
Thu Jun 23 21:58:12 [conn4] Assertion: 13066:Message contains no documents
|
22
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
23
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
24
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
25
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
26
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
27
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
28
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
29
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
30
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
31
|
+
Thu Jun 23 21:58:12 [conn4] insert test.log exception 13066 Message contains no documents 101ms
|
32
|
+
Thu Jun 23 21:58:12 [conn4] CMD: drop test.log
|
33
|
+
Thu Jun 23 21:58:12 [conn4] end connection 127.0.0.1:56593
|
34
|
+
Thu Jun 23 21:58:12 done allocating datafile /Users/bdurand/dev/projects/lumberjack_mongo_device/spec/tmp/db/test.1, size: 128MB, took 0.11 secs
|
35
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56599 #5
|
36
|
+
Thu Jun 23 21:58:12 [conn5] end connection 127.0.0.1:56599
|
37
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56602 #6
|
38
|
+
Thu Jun 23 21:58:12 [conn6] building new index on { _id: 1 } for test.log
|
39
|
+
Thu Jun 23 21:58:12 [conn6] done for 0 records 0secs
|
40
|
+
Thu Jun 23 21:58:12 [conn6] info: creating collection test.log on add index
|
29
41
|
building new index on { time: 1 } for test.log
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
Wed Feb 9 12:38:51 [conn22] info: creating collection test.log on add index
|
42
|
+
Thu Jun 23 21:58:12 [conn6] done for 0 records 0secs
|
43
|
+
Thu Jun 23 21:58:12 [conn6] building new index on { unit_of_work_id: 1 } for test.log
|
44
|
+
Thu Jun 23 21:58:12 [conn6] done for 0 records 0secs
|
45
|
+
Thu Jun 23 21:58:12 [conn6] CMD: drop test.log
|
46
|
+
Thu Jun 23 21:58:12 [conn6] end connection 127.0.0.1:56602
|
47
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56605 #7
|
48
|
+
Thu Jun 23 21:58:12 [conn7] end connection 127.0.0.1:56605
|
49
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56608 #8
|
50
|
+
Thu Jun 23 21:58:12 [conn8] building new index on { _id: 1 } for test.log
|
51
|
+
Thu Jun 23 21:58:12 [conn8] done for 0 records 0secs
|
52
|
+
Thu Jun 23 21:58:12 [conn8] building new index on { time: 1 } for test.log
|
53
|
+
Thu Jun 23 21:58:12 [conn8] done for 0 records 0secs
|
54
|
+
Thu Jun 23 21:58:12 [conn8] building new index on { unit_of_work_id: 1 } for test.log
|
55
|
+
Thu Jun 23 21:58:12 [conn8] done for 0 records 0secs
|
56
|
+
Thu Jun 23 21:58:12 [conn8] CMD: drop test.log
|
57
|
+
Thu Jun 23 21:58:12 [conn8] end connection 127.0.0.1:56608
|
58
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56611 #9
|
59
|
+
Thu Jun 23 21:58:12 [conn9] end connection 127.0.0.1:56611
|
60
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56614 #10
|
61
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56617 #11
|
62
|
+
Thu Jun 23 21:58:12 [conn11] end connection 127.0.0.1:56617
|
63
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56620 #12
|
64
|
+
Thu Jun 23 21:58:12 [conn12] building new index on { _id: 1 } for test.log
|
65
|
+
Thu Jun 23 21:58:12 [conn12] done for 0 records 0secs
|
66
|
+
Thu Jun 23 21:58:12 [conn12] building new index on { time: 1 } for test.log
|
67
|
+
Thu Jun 23 21:58:12 [conn12] done for 0 records 0secs
|
68
|
+
Thu Jun 23 21:58:12 [conn12] building new index on { unit_of_work_id: 1 } for test.log
|
69
|
+
Thu Jun 23 21:58:12 [conn12] done for 0 records 0secs
|
70
|
+
Thu Jun 23 21:58:12 [conn10] CMD: drop test.log
|
71
|
+
Thu Jun 23 21:58:12 [conn10] end connection 127.0.0.1:56614
|
72
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56623 #13
|
73
|
+
Thu Jun 23 21:58:12 [conn13] end connection 127.0.0.1:56623
|
74
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56626 #14
|
75
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56629 #15
|
76
|
+
Thu Jun 23 21:58:12 [conn15] end connection 127.0.0.1:56629
|
77
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56632 #16
|
78
|
+
Thu Jun 23 21:58:12 [conn16] building new index on { _id: 1 } for test.log
|
79
|
+
Thu Jun 23 21:58:12 [conn16] done for 0 records 0secs
|
80
|
+
Thu Jun 23 21:58:12 [conn16] building new index on { time: 1 } for test.log
|
81
|
+
Thu Jun 23 21:58:12 [conn16] done for 0 records 0secs
|
82
|
+
Thu Jun 23 21:58:12 [conn16] building new index on { unit_of_work_id: 1 } for test.log
|
83
|
+
Thu Jun 23 21:58:12 [conn16] done for 0 records 0secs
|
84
|
+
Thu Jun 23 21:58:12 [conn14] CMD: drop test.log
|
85
|
+
Thu Jun 23 21:58:12 [conn14] end connection 127.0.0.1:56626
|
86
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56635 #17
|
87
|
+
Thu Jun 23 21:58:12 [conn17] end connection 127.0.0.1:56635
|
88
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56638 #18
|
89
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56641 #19
|
90
|
+
Thu Jun 23 21:58:12 [conn19] end connection 127.0.0.1:56641
|
91
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56644 #20
|
92
|
+
Thu Jun 23 21:58:12 [conn20] building new index on { _id: 1 } for test.log
|
93
|
+
Thu Jun 23 21:58:12 [conn20] done for 0 records 0secs
|
94
|
+
Thu Jun 23 21:58:12 [conn20] building new index on { time: 1 } for test.log
|
95
|
+
Thu Jun 23 21:58:12 [conn20] done for 0 records 0secs
|
96
|
+
Thu Jun 23 21:58:12 [conn20] building new index on { unit_of_work_id: 1 } for test.log
|
97
|
+
Thu Jun 23 21:58:12 [conn20] done for 0 records 0secs
|
98
|
+
Thu Jun 23 21:58:12 [conn18] CMD: drop test.log
|
99
|
+
Thu Jun 23 21:58:12 [conn18] end connection 127.0.0.1:56638
|
100
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56647 #21
|
101
|
+
Thu Jun 23 21:58:12 [conn21] end connection 127.0.0.1:56647
|
102
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56650 #22
|
103
|
+
Thu Jun 23 21:58:12 [conn22] building new index on { _id: 1 } for test.log
|
104
|
+
Thu Jun 23 21:58:12 [conn22] done for 0 records 0secs
|
105
|
+
Thu Jun 23 21:58:12 [conn22] info: creating collection test.log on add index
|
95
106
|
building new index on { pid: 1 } for test.log
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
107
|
+
Thu Jun 23 21:58:12 [conn22] done for 0 records 0secs
|
108
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56653 #23
|
109
|
+
Thu Jun 23 21:58:12 [conn23] end connection 127.0.0.1:56653
|
110
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56656 #24
|
111
|
+
Thu Jun 23 21:58:12 [conn22] CMD: drop test.log
|
112
|
+
Thu Jun 23 21:58:12 [conn22] end connection 127.0.0.1:56650
|
113
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56659 #25
|
114
|
+
Thu Jun 23 21:58:12 [conn25] end connection 127.0.0.1:56659
|
115
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56662 #26
|
116
|
+
Thu Jun 23 21:58:12 [conn26] building new index on { _id: 1 } for test.log
|
117
|
+
Thu Jun 23 21:58:12 [conn26] done for 0 records 0secs
|
118
|
+
Thu Jun 23 21:58:12 [conn26] building new index on { time: 1 } for test.log
|
119
|
+
Thu Jun 23 21:58:12 [conn26] done for 0 records 0secs
|
120
|
+
Thu Jun 23 21:58:12 [conn26] building new index on { unit_of_work_id: 1 } for test.log
|
121
|
+
Thu Jun 23 21:58:12 [conn26] done for 0 records 0secs
|
122
|
+
Thu Jun 23 21:58:12 [conn26] Assertion: 13066:Message contains no documents
|
123
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56665 #27
|
124
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
125
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
126
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
127
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
128
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
129
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
130
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
131
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
132
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
133
|
+
Thu Jun 23 21:58:12 [conn26] insert test.log exception 13066 Message contains no documents 0ms
|
134
|
+
Thu Jun 23 21:58:12 [conn27] end connection 127.0.0.1:56665
|
135
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56668 #28
|
136
|
+
Thu Jun 23 21:58:12 [conn28] CMD: drop test.log
|
137
|
+
Thu Jun 23 21:58:12 [conn28] end connection 127.0.0.1:56668
|
138
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56671 #29
|
139
|
+
Thu Jun 23 21:58:12 [conn29] end connection 127.0.0.1:56671
|
140
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56674 #30
|
141
|
+
Thu Jun 23 21:58:12 [conn30] building new index on { _id: 1 } for test.log
|
142
|
+
Thu Jun 23 21:58:12 [conn30] done for 0 records 0secs
|
143
|
+
Thu Jun 23 21:58:12 [conn30] building new index on { time: 1 } for test.log
|
144
|
+
Thu Jun 23 21:58:12 [conn30] done for 0 records 0secs
|
145
|
+
Thu Jun 23 21:58:12 [conn30] building new index on { unit_of_work_id: 1 } for test.log
|
146
|
+
Thu Jun 23 21:58:12 [conn30] done for 0 records 0secs
|
147
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56677 #31
|
148
|
+
Thu Jun 23 21:58:12 [conn31] end connection 127.0.0.1:56677
|
149
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56680 #32
|
150
|
+
Thu Jun 23 21:58:12 [conn32] CMD: drop test.log
|
151
|
+
Thu Jun 23 21:58:12 [conn32] end connection 127.0.0.1:56680
|
152
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56683 #33
|
153
|
+
Thu Jun 23 21:58:12 [conn33] end connection 127.0.0.1:56683
|
154
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56686 #34
|
155
|
+
Thu Jun 23 21:58:12 [conn34] building new index on { _id: 1 } for test.log
|
156
|
+
Thu Jun 23 21:58:12 [conn34] done for 0 records 0secs
|
157
|
+
Thu Jun 23 21:58:12 [conn34] building new index on { time: 1 } for test.log
|
158
|
+
Thu Jun 23 21:58:12 [conn34] done for 0 records 0secs
|
159
|
+
Thu Jun 23 21:58:12 [conn34] building new index on { unit_of_work_id: 1 } for test.log
|
160
|
+
Thu Jun 23 21:58:12 [conn34] done for 0 records 0secs
|
161
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56689 #35
|
162
|
+
Thu Jun 23 21:58:12 [conn35] end connection 127.0.0.1:56689
|
163
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56692 #36
|
164
|
+
Thu Jun 23 21:58:12 [conn36] CMD: drop test.log
|
165
|
+
Thu Jun 23 21:58:12 [conn36] end connection 127.0.0.1:56692
|
166
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56695 #37
|
167
|
+
Thu Jun 23 21:58:12 [conn37] end connection 127.0.0.1:56695
|
168
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56698 #38
|
169
|
+
Thu Jun 23 21:58:12 [conn38] building new index on { _id: 1 } for test.log
|
170
|
+
Thu Jun 23 21:58:12 [conn38] done for 0 records 0secs
|
171
|
+
Thu Jun 23 21:58:12 [conn38] building new index on { time: 1 } for test.log
|
172
|
+
Thu Jun 23 21:58:12 [conn38] done for 0 records 0secs
|
173
|
+
Thu Jun 23 21:58:12 [conn38] building new index on { unit_of_work_id: 1 } for test.log
|
174
|
+
Thu Jun 23 21:58:12 [conn38] done for 0 records 0secs
|
175
|
+
Thu Jun 23 21:58:12 [conn38] Assertion: 13066:Message contains no documents
|
176
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
177
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
178
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
179
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
180
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
181
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
182
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
183
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
184
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
185
|
+
Thu Jun 23 21:58:12 [conn38] insert test.log exception 13066 Message contains no documents 0ms
|
186
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56701 #39
|
187
|
+
Thu Jun 23 21:58:12 [conn39] end connection 127.0.0.1:56701
|
188
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56704 #40
|
189
|
+
Thu Jun 23 21:58:12 [conn40] CMD: drop test.log
|
190
|
+
Thu Jun 23 21:58:12 [conn40] end connection 127.0.0.1:56704
|
191
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56707 #41
|
192
|
+
Thu Jun 23 21:58:12 [conn41] end connection 127.0.0.1:56707
|
193
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56710 #42
|
194
|
+
Thu Jun 23 21:58:12 [conn42] building new index on { _id: 1 } for test.log
|
195
|
+
Thu Jun 23 21:58:12 [conn42] done for 0 records 0secs
|
196
|
+
Thu Jun 23 21:58:12 [conn42] building new index on { time: 1 } for test.log
|
197
|
+
Thu Jun 23 21:58:12 [conn42] done for 0 records 0secs
|
198
|
+
Thu Jun 23 21:58:12 [conn42] building new index on { unit_of_work_id: 1 } for test.log
|
199
|
+
Thu Jun 23 21:58:12 [conn42] done for 0 records 0secs
|
200
|
+
Thu Jun 23 21:58:12 [conn42] Assertion: 13066:Message contains no documents
|
201
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
202
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
203
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
204
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
205
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
206
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
207
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
208
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
209
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
210
|
+
Thu Jun 23 21:58:12 [conn42] insert test.log exception 13066 Message contains no documents 0ms
|
211
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56713 #43
|
212
|
+
Thu Jun 23 21:58:12 [conn43] end connection 127.0.0.1:56713
|
213
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56716 #44
|
214
|
+
Thu Jun 23 21:58:12 [conn44] CMD: drop test.log
|
215
|
+
Thu Jun 23 21:58:12 [conn44] end connection 127.0.0.1:56716
|
216
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56719 #45
|
217
|
+
Thu Jun 23 21:58:12 [conn45] end connection 127.0.0.1:56719
|
218
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56722 #46
|
219
|
+
Thu Jun 23 21:58:12 [conn46] Assertion: 13066:Message contains no documents
|
220
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
221
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
222
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
223
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
224
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
225
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
226
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
227
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
228
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
229
|
+
Thu Jun 23 21:58:12 [conn46] insert test.log exception 13066 Message contains no documents 0ms
|
230
|
+
Thu Jun 23 21:58:12 [conn46] building new index on { _id: 1 } for test.log
|
231
|
+
Thu Jun 23 21:58:12 [conn46] done for 0 records 0secs
|
232
|
+
Thu Jun 23 21:58:12 [conn46] CMD: drop test.log
|
233
|
+
Thu Jun 23 21:58:12 [conn46] end connection 127.0.0.1:56722
|
234
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56725 #47
|
235
|
+
Thu Jun 23 21:58:12 [conn47] end connection 127.0.0.1:56725
|
236
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56728 #48
|
237
|
+
Thu Jun 23 21:58:12 [conn48] end connection 127.0.0.1:56728
|
238
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56731 #49
|
239
|
+
Thu Jun 23 21:58:12 [conn49] end connection 127.0.0.1:56731
|
240
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56734 #50
|
241
|
+
Thu Jun 23 21:58:12 [conn50] building new index on { _id: 1 } for test.log
|
242
|
+
Thu Jun 23 21:58:12 [conn50] done for 0 records 0secs
|
243
|
+
Thu Jun 23 21:58:12 [conn50] building new index on { time: 1 } for test.log
|
244
|
+
Thu Jun 23 21:58:12 [conn50] done for 0 records 0secs
|
245
|
+
Thu Jun 23 21:58:12 [conn50] building new index on { unit_of_work_id: 1 } for test.log
|
246
|
+
Thu Jun 23 21:58:12 [conn50] done for 0 records 0secs
|
247
|
+
Thu Jun 23 21:58:12 [conn50] Assertion: 13066:Message contains no documents
|
248
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
249
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
250
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
251
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
252
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
253
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
254
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
255
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
256
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
257
|
+
Thu Jun 23 21:58:12 [conn50] insert test.log exception 13066 Message contains no documents 0ms
|
258
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56737 #51
|
259
|
+
Thu Jun 23 21:58:12 [conn51] end connection 127.0.0.1:56737
|
260
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56740 #52
|
261
|
+
Thu Jun 23 21:58:12 [conn52] CMD: drop test.log
|
262
|
+
Thu Jun 23 21:58:12 [conn52] end connection 127.0.0.1:56740
|
263
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56743 #53
|
264
|
+
Thu Jun 23 21:58:12 [conn53] end connection 127.0.0.1:56743
|
265
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56746 #54
|
266
|
+
Thu Jun 23 21:58:12 [conn54] building new index on { _id: 1 } for test.log
|
267
|
+
Thu Jun 23 21:58:12 [conn54] done for 0 records 0secs
|
268
|
+
Thu Jun 23 21:58:12 [conn54] building new index on { time: 1 } for test.log
|
269
|
+
Thu Jun 23 21:58:12 [conn54] done for 0 records 0secs
|
270
|
+
Thu Jun 23 21:58:12 [conn54] building new index on { unit_of_work_id: 1 } for test.log
|
271
|
+
Thu Jun 23 21:58:12 [conn54] done for 0 records 0secs
|
272
|
+
Thu Jun 23 21:58:12 [conn54] Assertion: 13066:Message contains no documents
|
273
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
274
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
275
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
276
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
277
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
278
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
279
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
280
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
281
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
282
|
+
Thu Jun 23 21:58:12 [conn54] insert test.log exception 13066 Message contains no documents 0ms
|
283
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56749 #55
|
284
|
+
Thu Jun 23 21:58:12 [conn55] end connection 127.0.0.1:56749
|
285
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56752 #56
|
286
|
+
Thu Jun 23 21:58:12 [conn56] CMD: drop test.log
|
287
|
+
Thu Jun 23 21:58:12 [conn56] end connection 127.0.0.1:56752
|
288
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56755 #57
|
289
|
+
Thu Jun 23 21:58:12 [conn57] end connection 127.0.0.1:56755
|
290
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56758 #58
|
291
|
+
Thu Jun 23 21:58:12 [conn58] building new index on { _id: 1 } for test.log
|
292
|
+
Thu Jun 23 21:58:12 [conn58] done for 0 records 0secs
|
293
|
+
Thu Jun 23 21:58:12 [conn58] building new index on { time: 1 } for test.log
|
294
|
+
Thu Jun 23 21:58:12 [conn58] done for 0 records 0secs
|
295
|
+
Thu Jun 23 21:58:12 [conn58] building new index on { unit_of_work_id: 1 } for test.log
|
296
|
+
Thu Jun 23 21:58:12 [conn58] done for 0 records 0secs
|
297
|
+
Thu Jun 23 21:58:12 [conn58] Assertion: 13066:Message contains no documents
|
298
|
+
0x1000835aa 0x100063c18 0x100260dad 0x100265c0f 0x1003988f2 0x1003aca34 0x7fff834574f6 0x7fff834573a9
|
299
|
+
0 mongod 0x00000001000835aa _ZN5mongo11msgassertedEiPKc + 458
|
300
|
+
1 mongod 0x0000000100063c18 _ZN5mongo9DbMessage9nextJsObjEv + 376
|
301
|
+
2 mongod 0x0000000100260dad _ZN5mongo14receivedInsertERNS_7MessageERNS_5CurOpE + 637
|
302
|
+
3 mongod 0x0000000100265c0f _ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE + 5311
|
303
|
+
4 mongod 0x00000001003988f2 _ZN5mongo10connThreadEPNS_13MessagingPortE + 530
|
304
|
+
5 mongod 0x00000001003aca34 thread_proxy + 132
|
305
|
+
6 libSystem.B.dylib 0x00007fff834574f6 _pthread_start + 331
|
306
|
+
7 libSystem.B.dylib 0x00007fff834573a9 thread_start + 13
|
307
|
+
Thu Jun 23 21:58:12 [conn58] insert test.log exception 13066 Message contains no documents 0ms
|
308
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56761 #59
|
309
|
+
Thu Jun 23 21:58:12 [conn59] end connection 127.0.0.1:56761
|
310
|
+
Thu Jun 23 21:58:12 [initandlisten] connection accepted from 127.0.0.1:56764 #60
|
311
|
+
Thu Jun 23 21:58:12 [conn60] CMD: drop test.log
|
312
|
+
Thu Jun 23 21:58:12 [conn60] end connection 127.0.0.1:56764
|
313
|
+
Thu Jun 23 21:58:12 got kill or ctrl c or hup signal 15 (Terminated), will terminate after current cmd ends
|
314
|
+
Thu Jun 23 21:58:12 [interruptThread] now exiting
|
315
|
+
Thu Jun 23 21:58:12 dbexit:
|
230
316
|
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
317
|
+
Thu Jun 23 21:58:12 [interruptThread] shutdown: going to close listening sockets...
|
318
|
+
Thu Jun 23 21:58:12 [interruptThread] closing listening socket: 4
|
319
|
+
Thu Jun 23 21:58:12 [interruptThread] closing listening socket: 5
|
320
|
+
Thu Jun 23 21:58:12 [interruptThread] shutdown: going to flush oplog...
|
321
|
+
Thu Jun 23 21:58:12 [interruptThread] shutdown: going to close sockets...
|
322
|
+
Thu Jun 23 21:58:12 [interruptThread] shutdown: waiting for fs preallocator...
|
323
|
+
Thu Jun 23 21:58:12 [conn12] end connection 127.0.0.1:56620
|
324
|
+
Thu Jun 23 21:58:12 [conn50] end connection 127.0.0.1:56734
|
325
|
+
Thu Jun 23 21:58:12 [conn24] end connection 127.0.0.1:56656
|
326
|
+
Thu Jun 23 21:58:12 [conn20] end connection 127.0.0.1:56644
|
327
|
+
Thu Jun 23 21:58:12 [conn16] end connection 127.0.0.1:56632
|
328
|
+
Thu Jun 23 21:58:12 [conn26] end connection 127.0.0.1:56662
|
329
|
+
Thu Jun 23 21:58:12 [conn30] end connection 127.0.0.1:56674
|
330
|
+
Thu Jun 23 21:58:12 [conn38] end connection 127.0.0.1:56698
|
331
|
+
Thu Jun 23 21:58:12 [conn58] end connection 127.0.0.1:56758
|
332
|
+
Thu Jun 23 21:58:12 [conn42] end connection 127.0.0.1:56710
|
333
|
+
Thu Jun 23 21:58:12 [conn54] end connection 127.0.0.1:56746
|
334
|
+
Thu Jun 23 21:58:12 [conn34] end connection 127.0.0.1:56686
|
335
|
+
Thu Jun 23 21:58:14 [interruptThread] shutdown: closing all files...
|
336
|
+
Thu Jun 23 21:58:14 closeAllFiles() finished
|
251
337
|
|
252
|
-
|
253
|
-
|
338
|
+
Thu Jun 23 21:58:14 [interruptThread] shutdown: removing fs lock...
|
339
|
+
Thu Jun 23 21:58:14 dbexit: really exiting now
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lumberjack_mongo_device
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Brian Durand
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-06-23 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements: []
|
105
105
|
|
106
106
|
rubyforge_project:
|
107
|
-
rubygems_version: 1.5.
|
107
|
+
rubygems_version: 1.5.2
|
108
108
|
signing_key:
|
109
109
|
specification_version: 3
|
110
110
|
summary: A logging device for the lumberjack gem that writes log entries to a MongoDB collection.
|