tail 0.1.1 → 0.1.4

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.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/tail/{warning.png → cleaning.png} +0 -0
  3. data/app/assets/images/tail/up_arrow.png +0 -0
  4. data/app/assets/javascripts/tail/logs.js +35 -4
  5. data/app/assets/stylesheets/tail/logs.css +9 -0
  6. data/app/views/tail/logs/_icons.html.erb +9 -0
  7. data/app/views/tail/logs/index.html.erb +4 -8
  8. data/lib/tail/version.rb +1 -1
  9. data/test/dummy/log/development.log +4313 -0
  10. data/test/dummy/tmp/cache/assets/development/sprockets/0b2069268e0fe17ad0fba8a6ee767a36 +0 -0
  11. data/test/dummy/tmp/cache/assets/development/sprockets/13da9f3916f6e25056ec15b3454b3e9b +0 -0
  12. data/test/dummy/tmp/cache/assets/development/sprockets/2568e63e4fcf02350e6b86d7f0d00ded +0 -0
  13. data/test/dummy/tmp/cache/assets/development/sprockets/489ae40ae8f9f23c6b66d68052ac93ec +0 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/5b2b40c41f8abf20f286dd72e16cb20b +0 -0
  15. data/test/dummy/tmp/cache/assets/development/sprockets/70b10ade73897f53ee32de464f178ea3 +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sprockets/7db185bd62ab908c20e05ae12aa7f41d +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sprockets/7eedcabe2861761464c9a5049f43d5ac +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sprockets/8719dc92ab43aca7b767a86a30696d7d +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/8fedcc86b19bb75a2c4c24b14ddbf209 +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/90d07fb4ae83ea3dcc53189137392b5d +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/94b0591bef7a5e29a0be0086a63bedd7 +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/a3eefafe811911e0a969792cd6d76a80 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/c655bed0e7824132178101257cc51750 +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/c7338d5f81c4982c1ea19d9a078b724c +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/f95171e35ea035a46c8cff6b1c8aee7a +0 -0
  26. metadata +13 -5
  27. data/test/dummy/development.log +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 713315f29bec7fbdd1aac63ad2cff717fe92f35d
4
- data.tar.gz: cea41d3cde1191930d7beb51f1e2ace37f1fe9e5
3
+ metadata.gz: 571b63c4fc2ba4b3ec8ac1d6cca2709f77f37dda
4
+ data.tar.gz: f985901601a405038a8daaee52ec60aad3953325
5
5
  SHA512:
6
- metadata.gz: c25eb6b9a0c1ad3b06e1536d2381283ef4d2ff587b0ca3b2cfe661a6a63cc38a45ae36141f62909a03aec644ad4938202fd6c9f4634814f4b620f00fe0e274f9
7
- data.tar.gz: 4003e255d3bfa25c9131fbe9f711bed55ab585be7e7e9552d5c20b746e361d1ff13e2400765d7757d40d2a347daeec5a339e613ff8be21eaf986a64171a927f0
6
+ metadata.gz: 4a70617b18f05ae61e6974d9e487a0551e95da5fae3d6d89e475179c060f3e6036a50613686935f6e260098b3ab4b7eb1291578d5991d5913b06174208ba5353
7
+ data.tar.gz: 1bd0c934efbbd38082ecc27cdfd9499d8ea63a50223aa20297ab7aa64920fd287a95855f525a3b7351cdeb11a00e0df94c5477821ea8a9eca8ee539fac1373f7
@@ -1,14 +1,44 @@
1
1
  // Place all the behaviors and hooks related to the matching controller here.
2
2
  // All this logic will automatically be available in application.js.
3
+ document.onreadystatechange = function () {
4
+ if (document.readyState == "interactive") {
5
+ initApplication();
6
+ }
7
+ }
8
+
9
+ function initApplication(){
10
+ var appended = false, up_arrow = document.querySelector("#up");
11
+
12
+ onscroll = function () {
13
+ var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
14
+ if (scrollTop > 500) {
15
+ if (!appended) {
16
+ up_arrow.hidden = false;
17
+ appended = true;
18
+ }
19
+ } else {
20
+ if (appended) {
21
+ up_arrow.hidden = true;
22
+ appended = false;
23
+ }
24
+ }
25
+ };
26
+
27
+ }
28
+
29
+ function getPageVar(sVar) {
30
+ return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + encodeURI(sVar).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));
31
+ }
32
+
3
33
  function getGrep(text) {
4
34
  var sign;
5
35
  if (location.search == "") sign = "?"; else sign = "&";
6
36
  var search = sign + 'query=' + text;
7
37
  var query = location.pathname + 'grep' + location.search + search;
8
- sendRequest(query)
38
+ sendRequest(query, true)
9
39
  }
10
40
 
11
- function sendRequest(url) {
41
+ function sendRequest(url, isGoToBottom) {
12
42
  if (window.XMLHttpRequest) { // Mozilla, Safari, ...
13
43
  httpRequest = new XMLHttpRequest();
14
44
  } else if (window.ActiveXObject) { // IE
@@ -29,9 +59,10 @@ function sendRequest(url) {
29
59
  httpRequest.open("GET", url);
30
60
  httpRequest.onreadystatechange = function () {
31
61
  if (httpRequest.readyState != 4 || httpRequest.status != 200) return;
32
- // console.log("Success: " + httpRequest.responseText);
33
62
  document.getElementById('main').innerHTML = httpRequest.responseText;
34
- window.scrollTo(0, document.body.scrollHeight);
63
+ if (isGoToBottom) {
64
+ window.scrollTo(0, document.body.scrollHeight);
65
+ }
35
66
  };
36
67
  httpRequest.send();
37
68
  return true;
@@ -68,3 +68,12 @@ input {
68
68
  #more {
69
69
  margin-right: 20px
70
70
  }
71
+
72
+ #up {
73
+ position: fixed;
74
+ top: 50px;
75
+ right: 32px;
76
+ opacity: 0.45;
77
+ background-color: white;
78
+ border-radius: 2px
79
+ }
@@ -0,0 +1,9 @@
1
+ <div id="refresh">
2
+ <%= link_to image_tag('tail/refresh.png', title: 'Refresh page'), tail.root_path(file_name: params[:file_name], n: params[:n]) %>
3
+ </div>
4
+
5
+ <% if params[:file_name].nil? || params[:file_name] == "#{Rails.env}.log" %>
6
+ <div id="flush">
7
+ <%= link_to image_tag('tail/cleaning.png', title: 'Flush log file' ), tail.flush_path %>
8
+ </div>
9
+ <% end %>
@@ -10,15 +10,11 @@
10
10
  <%= link_to 'More..', tail.root_path(file_name: params[:file_name], n: (1.5 * params[:n].to_i).to_i), id: 'more' %>
11
11
  <%= text_field_tag :grep, nil, autofocus: true, onkeyup: 'javascript:getGrep(this.value)' %>
12
12
  </div>
13
- <div id="refresh">
14
- <%= link_to image_tag('tail/refresh.png', title: 'Refresh page'), tail.root_path(file_name: params[:file_name], n: params[:n]) %>
15
- </div>
16
13
 
17
- <% if params[:file_name].nil? || params[:file_name] == "#{Rails.env}.log" %>
18
- <div id="flush">
19
- <%= link_to image_tag('tail/warning.png', title: 'Flush log file' ), tail.flush_path %>
20
- </div>
21
- <% end %>
14
+ <%= render partial: 'icons' %>
22
15
 
16
+ <div id="up">
17
+ <%= link_to image_tag('tail/up_arrow.png', title: 'Top of the page.', display: 'none'), '#' %>
18
+ </div>
23
19
 
24
20
  <%= javascript_tag 'window.scrollTo(0, document.body.scrollHeight);' %>
@@ -1,3 +1,3 @@
1
1
  module Tail
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -131,3 +131,4316 @@ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02
131
131
 
132
132
 
133
133
  Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:10:39 +0300
134
+
135
+
136
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
137
+ Processing by Tail::LogsController#index as HTML
138
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.1ms)
139
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.4ms)
140
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (8.1ms)
141
+ Completed 200 OK in 22ms (Views: 15.4ms)
142
+
143
+
144
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
145
+
146
+
147
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
148
+
149
+
150
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
151
+
152
+
153
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
154
+
155
+
156
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
157
+
158
+
159
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:22:32 +0300
160
+
161
+
162
+ Started GET "/tail/?file_name=test.log&n=100" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
163
+ Processing by Tail::LogsController#index as HTML
164
+ Parameters: {"file_name"=>"test.log", "n"=>"100"}
165
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (0.1ms)
166
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.0ms)
167
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (6.8ms)
168
+ Completed 200 OK in 18ms (Views: 13.1ms)
169
+
170
+
171
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
172
+
173
+
174
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
175
+
176
+
177
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
178
+
179
+
180
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
181
+
182
+
183
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:22:35 +0300
184
+
185
+
186
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
187
+ Processing by Tail::LogsController#index as HTML
188
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
189
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.6ms)
190
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.1ms)
191
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (8.3ms)
192
+ Completed 200 OK in 20ms (Views: 14.7ms)
193
+
194
+
195
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
196
+
197
+
198
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
199
+
200
+
201
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
202
+
203
+
204
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
205
+
206
+
207
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
208
+
209
+
210
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:22:36 +0300
211
+
212
+
213
+ Started GET "/tail/grep?file_name=development.log&n=100&query=" for 127.0.0.1 at 2014-03-24 02:24:32 +0300
214
+ Processing by Tail::LogsController#grep as */*
215
+ Parameters: {"file_name"=>"development.log", "n"=>"100", "query"=>""}
216
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.0ms)
217
+ Completed 200 OK in 53ms (Views: 26.2ms)
218
+
219
+
220
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:24:32 +0300
221
+
222
+
223
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:24:32 +0300
224
+
225
+
226
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
227
+ Processing by Tail::LogsController#index as HTML
228
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
229
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.6ms)
230
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.6ms)
231
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (9.3ms)
232
+ Completed 200 OK in 43ms (Views: 38.2ms)
233
+
234
+
235
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
236
+
237
+
238
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
239
+
240
+
241
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
242
+
243
+
244
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
245
+
246
+
247
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
248
+
249
+
250
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:38 +0300
251
+
252
+
253
+ Started GET "/tail/?file_name=development.log&n=150" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
254
+ Processing by Tail::LogsController#index as HTML
255
+ Parameters: {"file_name"=>"development.log", "n"=>"150"}
256
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (4.2ms)
257
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.6ms)
258
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (11.6ms)
259
+ Completed 200 OK in 24ms (Views: 18.3ms)
260
+
261
+
262
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
263
+
264
+
265
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
266
+
267
+
268
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
269
+
270
+
271
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
272
+
273
+
274
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
275
+
276
+
277
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:43 +0300
278
+
279
+
280
+ Started GET "/tail/?file_name=development.log&n=225" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
281
+ Processing by Tail::LogsController#index as HTML
282
+ Parameters: {"file_name"=>"development.log", "n"=>"225"}
283
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (5.5ms)
284
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
285
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (10.7ms)
286
+ Completed 200 OK in 24ms (Views: 16.5ms)
287
+
288
+
289
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
290
+
291
+
292
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
293
+
294
+
295
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
296
+
297
+
298
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
299
+
300
+
301
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
302
+
303
+
304
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
305
+
306
+
307
+ Started GET "/tail/?file_name=development.log&n=337" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
308
+ Processing by Tail::LogsController#index as HTML
309
+ Parameters: {"file_name"=>"development.log", "n"=>"337"}
310
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (7.4ms)
311
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
312
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (12.1ms)
313
+ Completed 200 OK in 33ms (Views: 25.4ms)
314
+
315
+
316
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
317
+
318
+
319
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
320
+
321
+
322
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
323
+
324
+
325
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:44 +0300
326
+
327
+
328
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
329
+
330
+
331
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
332
+
333
+
334
+ Started GET "/tail/?file_name=development.log&n=505" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
335
+ Processing by Tail::LogsController#index as HTML
336
+ Parameters: {"file_name"=>"development.log", "n"=>"505"}
337
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (7.3ms)
338
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
339
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (11.5ms)
340
+ Completed 200 OK in 26ms (Views: 17.5ms)
341
+
342
+
343
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
344
+
345
+
346
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
347
+
348
+
349
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
350
+
351
+
352
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
353
+
354
+
355
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
356
+
357
+
358
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
359
+
360
+
361
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
362
+ Processing by Tail::LogsController#index as HTML
363
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
364
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (6.4ms)
365
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
366
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (10.7ms)
367
+ Completed 200 OK in 21ms (Views: 16.0ms)
368
+
369
+
370
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
371
+
372
+
373
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
374
+
375
+
376
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
377
+
378
+
379
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
380
+
381
+
382
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
383
+
384
+
385
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:30:45 +0300
386
+
387
+
388
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 02:30:51 +0300
389
+ Processing by Tail::LogsController#grep as */*
390
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
391
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (15.6ms)
392
+ Completed 200 OK in 66ms (Views: 44.6ms)
393
+
394
+
395
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:51 +0300
396
+
397
+
398
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:51 +0300
399
+
400
+
401
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 02:30:58 +0300
402
+ Processing by Tail::LogsController#grep as */*
403
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
404
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (13.6ms)
405
+ Completed 200 OK in 35ms (Views: 27.8ms)
406
+
407
+
408
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:58 +0300
409
+
410
+
411
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:30:58 +0300
412
+
413
+
414
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
415
+ Processing by Tail::LogsController#index as HTML
416
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
417
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (9.2ms)
418
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.2ms)
419
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (14.2ms)
420
+ Completed 200 OK in 39ms (Views: 33.7ms)
421
+
422
+
423
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
424
+
425
+
426
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
427
+
428
+
429
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
430
+
431
+
432
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
433
+
434
+
435
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
436
+
437
+
438
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:31:26 +0300
439
+
440
+
441
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:31:54 +0300
442
+ Processing by Tail::LogsController#index as HTML
443
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
444
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (10.3ms)
445
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
446
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (14.8ms)
447
+ Completed 200 OK in 47ms (Views: 38.5ms)
448
+
449
+
450
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:31:54 +0300
451
+
452
+
453
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:31:54 +0300
454
+
455
+
456
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:31:54 +0300
457
+
458
+
459
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:31:54 +0300
460
+
461
+
462
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:31:55 +0300
463
+
464
+
465
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:31:55 +0300
466
+
467
+
468
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 02:32:14 +0300
469
+ Processing by Tail::LogsController#grep as */*
470
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
471
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.5ms)
472
+ Completed 200 OK in 58ms (Views: 42.9ms)
473
+
474
+
475
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:14 +0300
476
+
477
+
478
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:14 +0300
479
+
480
+
481
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
482
+ Processing by Tail::LogsController#index as HTML
483
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
484
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (10.0ms)
485
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
486
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (15.1ms)
487
+ Completed 200 OK in 51ms (Views: 43.7ms)
488
+
489
+
490
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
491
+
492
+
493
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
494
+
495
+
496
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
497
+
498
+
499
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
500
+
501
+
502
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
503
+
504
+
505
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:32:37 +0300
506
+
507
+
508
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 02:32:44 +0300
509
+ Processing by Tail::LogsController#grep as */*
510
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
511
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.0ms)
512
+ Completed 200 OK in 66ms (Views: 41.5ms)
513
+
514
+
515
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:44 +0300
516
+
517
+
518
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:32:44 +0300
519
+
520
+
521
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
522
+ Processing by Tail::LogsController#index as HTML
523
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
524
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (15.6ms)
525
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.4ms)
526
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (24.1ms)
527
+ Completed 200 OK in 62ms (Views: 53.6ms)
528
+
529
+
530
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
531
+
532
+
533
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
534
+
535
+
536
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
537
+
538
+
539
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
540
+
541
+
542
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
543
+
544
+
545
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:33:11 +0300
546
+
547
+
548
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
549
+ Processing by Tail::LogsController#index as HTML
550
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
551
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (12.6ms)
552
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
553
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (16.6ms)
554
+ Completed 200 OK in 43ms (Views: 36.6ms)
555
+
556
+
557
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
558
+
559
+
560
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
561
+
562
+
563
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
564
+
565
+
566
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
567
+
568
+
569
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
570
+
571
+
572
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 02:34:26 +0300
573
+
574
+
575
+ Started GET "/tail/grep?file_name=development.log&n=757&query=f" for 127.0.0.1 at 2014-03-24 03:13:08 +0300
576
+ Processing by Tail::LogsController#grep as */*
577
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>"f"}
578
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.0ms)
579
+ Completed 200 OK in 65ms (Views: 54.8ms)
580
+
581
+
582
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:09 +0300
583
+
584
+
585
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:09 +0300
586
+
587
+
588
+ Started GET "/tail/grep?file_name=development.log&n=757&query=fd" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
589
+ Processing by Tail::LogsController#grep as */*
590
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>"fd"}
591
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (15.9ms)
592
+ Completed 200 OK in 34ms (Views: 26.9ms)
593
+
594
+
595
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
596
+
597
+
598
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
599
+
600
+
601
+ Started GET "/tail/grep?file_name=development.log&n=757&query=fds" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
602
+ Processing by Tail::LogsController#grep as */*
603
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>"fds"}
604
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.9ms)
605
+ Completed 200 OK in 35ms (Views: 27.3ms)
606
+
607
+
608
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
609
+
610
+
611
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:10 +0300
612
+
613
+
614
+ Started GET "/tail/grep?file_name=development.log&n=757&query=fdsf" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
615
+ Processing by Tail::LogsController#grep as */*
616
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>"fdsf"}
617
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.8ms)
618
+ Completed 200 OK in 41ms (Views: 32.5ms)
619
+
620
+
621
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
622
+
623
+
624
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
625
+
626
+
627
+ Started GET "/tail/grep?file_name=development.log&n=757&query=fdsfg" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
628
+ Processing by Tail::LogsController#grep as */*
629
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>"fdsfg"}
630
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.5ms)
631
+ Completed 200 OK in 51ms (Views: 41.8ms)
632
+
633
+
634
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
635
+
636
+
637
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:11 +0300
638
+
639
+
640
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
641
+ Processing by Tail::LogsController#index as HTML
642
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
643
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (13.0ms)
644
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
645
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (17.4ms)
646
+ Completed 200 OK in 45ms (Views: 37.7ms)
647
+
648
+
649
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
650
+
651
+
652
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
653
+
654
+
655
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
656
+
657
+
658
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
659
+
660
+
661
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
662
+
663
+
664
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 03:13:45 +0300
665
+
666
+
667
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 03:13:56 +0300
668
+ Processing by Tail::LogsController#grep as */*
669
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
670
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (33.2ms)
671
+ Completed 200 OK in 62ms (Views: 47.0ms)
672
+
673
+
674
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:56 +0300
675
+
676
+
677
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:13:56 +0300
678
+
679
+
680
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
681
+ Processing by Tail::LogsController#index as HTML
682
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
683
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (13.9ms)
684
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
685
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (18.5ms)
686
+ Completed 200 OK in 47ms (Views: 39.0ms)
687
+
688
+
689
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
690
+
691
+
692
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
693
+
694
+
695
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
696
+
697
+
698
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
699
+
700
+
701
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
702
+
703
+
704
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 03:14:12 +0300
705
+
706
+
707
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
708
+ Processing by Tail::LogsController#grep as */*
709
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
710
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (15.7ms)
711
+ Completed 200 OK in 39ms (Views: 31.1ms)
712
+
713
+
714
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
715
+
716
+
717
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
718
+
719
+
720
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
721
+ Processing by Tail::LogsController#grep as */*
722
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
723
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.1ms)
724
+ Completed 200 OK in 53ms (Views: 42.2ms)
725
+
726
+
727
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
728
+
729
+
730
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
731
+
732
+
733
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
734
+ Processing by Tail::LogsController#grep as */*
735
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
736
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.0ms)
737
+ Completed 200 OK in 44ms (Views: 36.9ms)
738
+
739
+
740
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
741
+
742
+
743
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:16 +0300
744
+
745
+
746
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
747
+ Processing by Tail::LogsController#grep as */*
748
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
749
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.4ms)
750
+ Completed 200 OK in 39ms (Views: 30.4ms)
751
+
752
+
753
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
754
+
755
+
756
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
757
+
758
+
759
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
760
+ Processing by Tail::LogsController#grep as */*
761
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
762
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.0ms)
763
+ Completed 200 OK in 48ms (Views: 38.4ms)
764
+
765
+
766
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
767
+
768
+
769
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:17 +0300
770
+
771
+
772
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:19 +0300
773
+ Processing by Tail::LogsController#grep as */*
774
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
775
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (18.0ms)
776
+ Completed 200 OK in 39ms (Views: 29.8ms)
777
+
778
+
779
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:19 +0300
780
+
781
+
782
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:19 +0300
783
+
784
+
785
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
786
+ Processing by Tail::LogsController#grep as */*
787
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
788
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.7ms)
789
+ Completed 200 OK in 46ms (Views: 36.2ms)
790
+
791
+
792
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
793
+
794
+
795
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
796
+
797
+
798
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
799
+ Processing by Tail::LogsController#grep as */*
800
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
801
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.4ms)
802
+ Completed 200 OK in 44ms (Views: 36.1ms)
803
+
804
+
805
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
806
+
807
+
808
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
809
+
810
+
811
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
812
+ Processing by Tail::LogsController#grep as */*
813
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
814
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (18.5ms)
815
+ Completed 200 OK in 42ms (Views: 33.3ms)
816
+
817
+
818
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
819
+
820
+
821
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
822
+
823
+
824
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
825
+ Processing by Tail::LogsController#grep as */*
826
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
827
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.1ms)
828
+ Completed 200 OK in 48ms (Views: 38.9ms)
829
+
830
+
831
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
832
+
833
+
834
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:21 +0300
835
+
836
+
837
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
838
+ Processing by Tail::LogsController#grep as */*
839
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
840
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.7ms)
841
+ Completed 200 OK in 41ms (Views: 32.2ms)
842
+
843
+
844
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
845
+
846
+
847
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
848
+
849
+
850
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
851
+ Processing by Tail::LogsController#grep as */*
852
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
853
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.4ms)
854
+ Completed 200 OK in 51ms (Views: 40.9ms)
855
+
856
+
857
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
858
+
859
+
860
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
861
+
862
+
863
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:23 +0300
864
+ Processing by Tail::LogsController#grep as */*
865
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
866
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.2ms)
867
+ Completed 200 OK in 42ms (Views: 32.9ms)
868
+
869
+
870
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
871
+
872
+
873
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
874
+
875
+
876
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
877
+ Processing by Tail::LogsController#grep as */*
878
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
879
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.9ms)
880
+ Completed 200 OK in 44ms (Views: 35.1ms)
881
+
882
+
883
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
884
+
885
+
886
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
887
+
888
+
889
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
890
+ Processing by Tail::LogsController#grep as */*
891
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
892
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.1ms)
893
+ Completed 200 OK in 44ms (Views: 36.6ms)
894
+
895
+
896
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
897
+
898
+
899
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
900
+
901
+
902
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
903
+ Processing by Tail::LogsController#grep as */*
904
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
905
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.9ms)
906
+ Completed 200 OK in 42ms (Views: 34.1ms)
907
+
908
+
909
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
910
+
911
+
912
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:24 +0300
913
+
914
+
915
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:25 +0300
916
+ Processing by Tail::LogsController#grep as */*
917
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
918
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.3ms)
919
+ Completed 200 OK in 44ms (Views: 34.9ms)
920
+
921
+
922
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:26 +0300
923
+
924
+
925
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:26 +0300
926
+
927
+
928
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:31 +0300
929
+ Processing by Tail::LogsController#grep as */*
930
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
931
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.6ms)
932
+ Completed 200 OK in 46ms (Views: 36.5ms)
933
+
934
+
935
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:31 +0300
936
+
937
+
938
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:31 +0300
939
+
940
+
941
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
942
+ Processing by Tail::LogsController#grep as */*
943
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
944
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (30.6ms)
945
+ Completed 200 OK in 54ms (Views: 45.5ms)
946
+
947
+
948
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
949
+
950
+
951
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
952
+
953
+
954
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
955
+ Processing by Tail::LogsController#grep as */*
956
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
957
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.6ms)
958
+ Completed 200 OK in 47ms (Views: 37.5ms)
959
+
960
+
961
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
962
+
963
+
964
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
965
+
966
+
967
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
968
+ Processing by Tail::LogsController#grep as */*
969
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
970
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.5ms)
971
+ Completed 200 OK in 42ms (Views: 34.4ms)
972
+
973
+
974
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
975
+
976
+
977
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
978
+
979
+
980
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:32 +0300
981
+ Processing by Tail::LogsController#grep as */*
982
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
983
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.5ms)
984
+ Completed 200 OK in 43ms (Views: 33.4ms)
985
+
986
+
987
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:33 +0300
988
+
989
+
990
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:33 +0300
991
+
992
+
993
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:33 +0300
994
+ Processing by Tail::LogsController#grep as */*
995
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
996
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.0ms)
997
+ Completed 200 OK in 37ms (Views: 29.1ms)
998
+
999
+
1000
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:33 +0300
1001
+
1002
+
1003
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:33 +0300
1004
+
1005
+
1006
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1007
+ Processing by Tail::LogsController#grep as */*
1008
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1009
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (27.8ms)
1010
+ Completed 200 OK in 51ms (Views: 41.5ms)
1011
+
1012
+
1013
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1014
+
1015
+
1016
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1017
+
1018
+
1019
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1020
+ Processing by Tail::LogsController#grep as */*
1021
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1022
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.8ms)
1023
+ Completed 200 OK in 42ms (Views: 31.8ms)
1024
+
1025
+
1026
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1027
+
1028
+
1029
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1030
+
1031
+
1032
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1033
+ Processing by Tail::LogsController#grep as */*
1034
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1035
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.6ms)
1036
+ Completed 200 OK in 43ms (Views: 34.8ms)
1037
+
1038
+
1039
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1040
+
1041
+
1042
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1043
+
1044
+
1045
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1046
+ Processing by Tail::LogsController#grep as */*
1047
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1048
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.9ms)
1049
+ Completed 200 OK in 50ms (Views: 39.3ms)
1050
+
1051
+
1052
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1053
+
1054
+
1055
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1056
+
1057
+
1058
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1059
+ Processing by Tail::LogsController#grep as */*
1060
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1061
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.9ms)
1062
+ Completed 200 OK in 39ms (Views: 31.3ms)
1063
+
1064
+
1065
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1066
+
1067
+
1068
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:34 +0300
1069
+
1070
+
1071
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:35 +0300
1072
+ Processing by Tail::LogsController#grep as */*
1073
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1074
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.0ms)
1075
+ Completed 200 OK in 46ms (Views: 35.8ms)
1076
+
1077
+
1078
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:35 +0300
1079
+
1080
+
1081
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:35 +0300
1082
+
1083
+
1084
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1085
+ Processing by Tail::LogsController#grep as */*
1086
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1087
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.8ms)
1088
+ Completed 200 OK in 50ms (Views: 40.0ms)
1089
+
1090
+
1091
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1092
+
1093
+
1094
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1095
+
1096
+
1097
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1098
+ Processing by Tail::LogsController#grep as */*
1099
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1100
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.8ms)
1101
+ Completed 200 OK in 45ms (Views: 35.7ms)
1102
+
1103
+
1104
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1105
+
1106
+
1107
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1108
+
1109
+
1110
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1111
+ Processing by Tail::LogsController#grep as */*
1112
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1113
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.3ms)
1114
+ Completed 200 OK in 46ms (Views: 36.9ms)
1115
+
1116
+
1117
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1118
+
1119
+
1120
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1121
+
1122
+
1123
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1124
+ Processing by Tail::LogsController#grep as */*
1125
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1126
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.3ms)
1127
+ Completed 200 OK in 48ms (Views: 38.9ms)
1128
+
1129
+
1130
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1131
+
1132
+
1133
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1134
+
1135
+
1136
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1137
+ Processing by Tail::LogsController#grep as */*
1138
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1139
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.0ms)
1140
+ Completed 200 OK in 41ms (Views: 32.6ms)
1141
+
1142
+
1143
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1144
+
1145
+
1146
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1147
+
1148
+
1149
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1150
+ Processing by Tail::LogsController#grep as */*
1151
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1152
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (34.0ms)
1153
+ Completed 200 OK in 54ms (Views: 45.1ms)
1154
+
1155
+
1156
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1157
+
1158
+
1159
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:36 +0300
1160
+
1161
+
1162
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1163
+ Processing by Tail::LogsController#grep as */*
1164
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1165
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.1ms)
1166
+ Completed 200 OK in 45ms (Views: 35.6ms)
1167
+
1168
+
1169
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1170
+
1171
+
1172
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1173
+
1174
+
1175
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1176
+ Processing by Tail::LogsController#grep as */*
1177
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1178
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (27.7ms)
1179
+ Completed 200 OK in 52ms (Views: 42.9ms)
1180
+
1181
+
1182
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1183
+
1184
+
1185
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:37 +0300
1186
+
1187
+
1188
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1189
+ Processing by Tail::LogsController#grep as */*
1190
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1191
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.8ms)
1192
+ Completed 200 OK in 46ms (Views: 37.4ms)
1193
+
1194
+
1195
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1196
+
1197
+
1198
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1199
+
1200
+
1201
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1202
+ Processing by Tail::LogsController#grep as */*
1203
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1204
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.2ms)
1205
+ Completed 200 OK in 50ms (Views: 40.0ms)
1206
+
1207
+
1208
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1209
+
1210
+
1211
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1212
+
1213
+
1214
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1215
+ Processing by Tail::LogsController#grep as */*
1216
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1217
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.0ms)
1218
+ Completed 200 OK in 48ms (Views: 39.5ms)
1219
+
1220
+
1221
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1222
+
1223
+
1224
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:38 +0300
1225
+
1226
+
1227
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1228
+ Processing by Tail::LogsController#grep as */*
1229
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1230
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.5ms)
1231
+ Completed 200 OK in 48ms (Views: 39.2ms)
1232
+
1233
+
1234
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1235
+
1236
+
1237
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1238
+
1239
+
1240
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1241
+ Processing by Tail::LogsController#grep as */*
1242
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1243
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.0ms)
1244
+ Completed 200 OK in 45ms (Views: 37.6ms)
1245
+
1246
+
1247
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1248
+
1249
+
1250
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1251
+
1252
+
1253
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1254
+ Processing by Tail::LogsController#grep as */*
1255
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1256
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (30.3ms)
1257
+ Completed 200 OK in 50ms (Views: 42.1ms)
1258
+
1259
+
1260
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1261
+
1262
+
1263
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1264
+
1265
+
1266
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1267
+ Processing by Tail::LogsController#grep as */*
1268
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1269
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.4ms)
1270
+ Completed 200 OK in 47ms (Views: 40.0ms)
1271
+
1272
+
1273
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1274
+
1275
+
1276
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1277
+
1278
+
1279
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:40 +0300
1280
+ Processing by Tail::LogsController#grep as */*
1281
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1282
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.1ms)
1283
+ Completed 200 OK in 46ms (Views: 39.2ms)
1284
+
1285
+
1286
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:41 +0300
1287
+
1288
+
1289
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:41 +0300
1290
+
1291
+
1292
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:41 +0300
1293
+ Processing by Tail::LogsController#grep as */*
1294
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1295
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (17.6ms)
1296
+ Completed 200 OK in 38ms (Views: 29.9ms)
1297
+
1298
+
1299
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:41 +0300
1300
+
1301
+
1302
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:41 +0300
1303
+
1304
+
1305
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1306
+ Processing by Tail::LogsController#grep as */*
1307
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1308
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.7ms)
1309
+ Completed 200 OK in 46ms (Views: 38.6ms)
1310
+
1311
+
1312
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1313
+
1314
+
1315
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1316
+
1317
+
1318
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1319
+ Processing by Tail::LogsController#grep as */*
1320
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1321
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.6ms)
1322
+ Completed 200 OK in 46ms (Views: 36.3ms)
1323
+
1324
+
1325
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1326
+
1327
+
1328
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1329
+
1330
+
1331
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1332
+ Processing by Tail::LogsController#grep as */*
1333
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1334
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.4ms)
1335
+ Completed 200 OK in 47ms (Views: 37.9ms)
1336
+
1337
+
1338
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1339
+
1340
+
1341
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1342
+
1343
+
1344
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1345
+ Processing by Tail::LogsController#grep as */*
1346
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1347
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.3ms)
1348
+ Completed 200 OK in 42ms (Views: 34.7ms)
1349
+
1350
+
1351
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1352
+
1353
+
1354
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1355
+
1356
+
1357
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:44 +0300
1358
+ Processing by Tail::LogsController#grep as */*
1359
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1360
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.7ms)
1361
+ Completed 200 OK in 49ms (Views: 42.7ms)
1362
+
1363
+
1364
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:45 +0300
1365
+
1366
+
1367
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:45 +0300
1368
+
1369
+
1370
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:50 +0300
1371
+ Processing by Tail::LogsController#grep as */*
1372
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1373
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.8ms)
1374
+ Completed 200 OK in 50ms (Views: 39.8ms)
1375
+
1376
+
1377
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:50 +0300
1378
+
1379
+
1380
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:50 +0300
1381
+
1382
+
1383
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1384
+ Processing by Tail::LogsController#grep as */*
1385
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1386
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.5ms)
1387
+ Completed 200 OK in 45ms (Views: 35.7ms)
1388
+
1389
+
1390
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1391
+
1392
+
1393
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1394
+
1395
+
1396
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1397
+ Processing by Tail::LogsController#grep as */*
1398
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1399
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.4ms)
1400
+ Completed 200 OK in 46ms (Views: 36.2ms)
1401
+
1402
+
1403
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1404
+
1405
+
1406
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1407
+
1408
+
1409
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1410
+ Processing by Tail::LogsController#grep as */*
1411
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1412
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (18.4ms)
1413
+ Completed 200 OK in 44ms (Views: 34.1ms)
1414
+
1415
+
1416
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1417
+
1418
+
1419
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1420
+
1421
+
1422
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1423
+ Processing by Tail::LogsController#grep as */*
1424
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1425
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.3ms)
1426
+ Completed 200 OK in 33ms (Views: 25.8ms)
1427
+
1428
+
1429
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1430
+
1431
+
1432
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1433
+
1434
+
1435
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1436
+ Processing by Tail::LogsController#grep as */*
1437
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1438
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.6ms)
1439
+ Completed 200 OK in 50ms (Views: 40.7ms)
1440
+
1441
+
1442
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1443
+
1444
+
1445
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1446
+
1447
+
1448
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1449
+ Processing by Tail::LogsController#grep as */*
1450
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1451
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.0ms)
1452
+ Completed 200 OK in 40ms (Views: 31.4ms)
1453
+
1454
+
1455
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1456
+
1457
+
1458
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:51 +0300
1459
+
1460
+
1461
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1462
+ Processing by Tail::LogsController#grep as */*
1463
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1464
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (35.0ms)
1465
+ Completed 200 OK in 54ms (Views: 46.8ms)
1466
+
1467
+
1468
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1469
+
1470
+
1471
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1472
+
1473
+
1474
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1475
+ Processing by Tail::LogsController#grep as */*
1476
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1477
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.1ms)
1478
+ Completed 200 OK in 46ms (Views: 36.7ms)
1479
+
1480
+
1481
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1482
+
1483
+
1484
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1485
+
1486
+
1487
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1488
+ Processing by Tail::LogsController#grep as */*
1489
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1490
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.3ms)
1491
+ Completed 200 OK in 44ms (Views: 36.3ms)
1492
+
1493
+
1494
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1495
+
1496
+
1497
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1498
+
1499
+
1500
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1501
+ Processing by Tail::LogsController#grep as */*
1502
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1503
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (27.4ms)
1504
+ Completed 200 OK in 48ms (Views: 38.9ms)
1505
+
1506
+
1507
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1508
+
1509
+
1510
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1511
+
1512
+
1513
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1514
+ Processing by Tail::LogsController#grep as */*
1515
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1516
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.6ms)
1517
+ Completed 200 OK in 48ms (Views: 39.9ms)
1518
+
1519
+
1520
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1521
+
1522
+
1523
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:54 +0300
1524
+
1525
+
1526
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1527
+ Processing by Tail::LogsController#grep as */*
1528
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1529
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.5ms)
1530
+ Completed 200 OK in 46ms (Views: 39.1ms)
1531
+
1532
+
1533
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1534
+
1535
+
1536
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1537
+
1538
+
1539
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1540
+ Processing by Tail::LogsController#grep as */*
1541
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1542
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.7ms)
1543
+ Completed 200 OK in 46ms (Views: 37.2ms)
1544
+
1545
+
1546
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1547
+
1548
+
1549
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1550
+
1551
+
1552
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1553
+ Processing by Tail::LogsController#grep as */*
1554
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1555
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.7ms)
1556
+ Completed 200 OK in 45ms (Views: 37.2ms)
1557
+
1558
+
1559
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1560
+
1561
+
1562
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:55 +0300
1563
+
1564
+
1565
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1566
+ Processing by Tail::LogsController#grep as */*
1567
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1568
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.6ms)
1569
+ Completed 200 OK in 52ms (Views: 36.1ms)
1570
+
1571
+
1572
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1573
+
1574
+
1575
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1576
+
1577
+
1578
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1579
+ Processing by Tail::LogsController#grep as */*
1580
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1581
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.0ms)
1582
+ Completed 200 OK in 48ms (Views: 40.8ms)
1583
+
1584
+
1585
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1586
+
1587
+
1588
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1589
+
1590
+
1591
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1592
+ Processing by Tail::LogsController#grep as */*
1593
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1594
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.7ms)
1595
+ Completed 200 OK in 43ms (Views: 35.9ms)
1596
+
1597
+
1598
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1599
+
1600
+
1601
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:14:56 +0300
1602
+
1603
+
1604
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1605
+ Processing by Tail::LogsController#grep as */*
1606
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1607
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.3ms)
1608
+ Completed 200 OK in 40ms (Views: 31.2ms)
1609
+
1610
+
1611
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1612
+
1613
+
1614
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1615
+
1616
+
1617
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1618
+ Processing by Tail::LogsController#grep as */*
1619
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1620
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.4ms)
1621
+ Completed 200 OK in 42ms (Views: 34.2ms)
1622
+
1623
+
1624
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1625
+
1626
+
1627
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1628
+
1629
+
1630
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1631
+ Processing by Tail::LogsController#grep as */*
1632
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1633
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.6ms)
1634
+ Completed 200 OK in 42ms (Views: 34.3ms)
1635
+
1636
+
1637
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1638
+
1639
+
1640
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1641
+
1642
+
1643
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1644
+ Processing by Tail::LogsController#grep as */*
1645
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1646
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.6ms)
1647
+ Completed 200 OK in 43ms (Views: 35.6ms)
1648
+
1649
+
1650
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1651
+
1652
+
1653
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1654
+
1655
+
1656
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1657
+ Processing by Tail::LogsController#grep as */*
1658
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1659
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.3ms)
1660
+ Completed 200 OK in 51ms (Views: 41.9ms)
1661
+
1662
+
1663
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1664
+
1665
+
1666
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1667
+
1668
+
1669
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:06 +0300
1670
+ Processing by Tail::LogsController#grep as */*
1671
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1672
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.7ms)
1673
+ Completed 200 OK in 38ms (Views: 31.3ms)
1674
+
1675
+
1676
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:07 +0300
1677
+
1678
+
1679
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:07 +0300
1680
+
1681
+
1682
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1683
+ Processing by Tail::LogsController#grep as */*
1684
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1685
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.8ms)
1686
+ Completed 200 OK in 53ms (Views: 40.1ms)
1687
+
1688
+
1689
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1690
+
1691
+
1692
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1693
+
1694
+
1695
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1696
+ Processing by Tail::LogsController#grep as */*
1697
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1698
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.6ms)
1699
+ Completed 200 OK in 46ms (Views: 37.3ms)
1700
+
1701
+
1702
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1703
+
1704
+
1705
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1706
+
1707
+
1708
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1709
+ Processing by Tail::LogsController#grep as */*
1710
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1711
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.5ms)
1712
+ Completed 200 OK in 46ms (Views: 37.6ms)
1713
+
1714
+
1715
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1716
+
1717
+
1718
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1719
+
1720
+
1721
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1722
+ Processing by Tail::LogsController#grep as */*
1723
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1724
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (19.1ms)
1725
+ Completed 200 OK in 42ms (Views: 33.6ms)
1726
+
1727
+
1728
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1729
+
1730
+
1731
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:16 +0300
1732
+
1733
+
1734
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1735
+ Processing by Tail::LogsController#grep as */*
1736
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1737
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.7ms)
1738
+ Completed 200 OK in 47ms (Views: 38.0ms)
1739
+
1740
+
1741
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1742
+
1743
+
1744
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1745
+
1746
+
1747
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1748
+ Processing by Tail::LogsController#grep as */*
1749
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1750
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.2ms)
1751
+ Completed 200 OK in 42ms (Views: 35.3ms)
1752
+
1753
+
1754
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1755
+
1756
+
1757
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:17 +0300
1758
+
1759
+
1760
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1761
+ Processing by Tail::LogsController#grep as */*
1762
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1763
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.2ms)
1764
+ Completed 200 OK in 48ms (Views: 39.7ms)
1765
+
1766
+
1767
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1768
+
1769
+
1770
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1771
+
1772
+
1773
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1774
+ Processing by Tail::LogsController#grep as */*
1775
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1776
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.3ms)
1777
+ Completed 200 OK in 47ms (Views: 37.5ms)
1778
+
1779
+
1780
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1781
+
1782
+
1783
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1784
+
1785
+
1786
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1787
+ Processing by Tail::LogsController#grep as */*
1788
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1789
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.3ms)
1790
+ Completed 200 OK in 46ms (Views: 38.0ms)
1791
+
1792
+
1793
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1794
+
1795
+
1796
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1797
+
1798
+
1799
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1800
+ Processing by Tail::LogsController#grep as */*
1801
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1802
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.0ms)
1803
+ Completed 200 OK in 45ms (Views: 36.3ms)
1804
+
1805
+
1806
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1807
+
1808
+
1809
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1810
+
1811
+
1812
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:19 +0300
1813
+ Processing by Tail::LogsController#grep as */*
1814
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1815
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.4ms)
1816
+ Completed 200 OK in 44ms (Views: 35.0ms)
1817
+
1818
+
1819
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:20 +0300
1820
+
1821
+
1822
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:20 +0300
1823
+
1824
+
1825
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:20 +0300
1826
+ Processing by Tail::LogsController#grep as */*
1827
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1828
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.1ms)
1829
+ Completed 200 OK in 44ms (Views: 35.0ms)
1830
+
1831
+
1832
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:20 +0300
1833
+
1834
+
1835
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:20 +0300
1836
+
1837
+
1838
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:30 +0300
1839
+ Processing by Tail::LogsController#grep as */*
1840
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1841
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.1ms)
1842
+ Completed 200 OK in 50ms (Views: 39.5ms)
1843
+
1844
+
1845
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1846
+
1847
+
1848
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1849
+
1850
+
1851
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1852
+ Processing by Tail::LogsController#grep as */*
1853
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1854
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.3ms)
1855
+ Completed 200 OK in 49ms (Views: 41.3ms)
1856
+
1857
+
1858
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1859
+
1860
+
1861
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1862
+
1863
+
1864
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1865
+ Processing by Tail::LogsController#grep as */*
1866
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1867
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.9ms)
1868
+ Completed 200 OK in 38ms (Views: 30.3ms)
1869
+
1870
+
1871
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1872
+
1873
+
1874
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1875
+
1876
+
1877
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1878
+ Processing by Tail::LogsController#grep as */*
1879
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1880
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.4ms)
1881
+ Completed 200 OK in 45ms (Views: 36.9ms)
1882
+
1883
+
1884
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1885
+
1886
+
1887
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1888
+
1889
+
1890
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1891
+ Processing by Tail::LogsController#grep as */*
1892
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1893
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.2ms)
1894
+ Completed 200 OK in 41ms (Views: 32.8ms)
1895
+
1896
+
1897
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1898
+
1899
+
1900
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1901
+
1902
+
1903
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1904
+ Processing by Tail::LogsController#grep as */*
1905
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1906
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (18.3ms)
1907
+ Completed 200 OK in 37ms (Views: 28.8ms)
1908
+
1909
+
1910
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1911
+
1912
+
1913
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1914
+
1915
+
1916
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1917
+ Processing by Tail::LogsController#grep as */*
1918
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1919
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.6ms)
1920
+ Completed 200 OK in 45ms (Views: 36.2ms)
1921
+
1922
+
1923
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1924
+
1925
+
1926
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:31 +0300
1927
+
1928
+
1929
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:32 +0300
1930
+ Processing by Tail::LogsController#grep as */*
1931
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1932
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.5ms)
1933
+ Completed 200 OK in 48ms (Views: 39.5ms)
1934
+
1935
+
1936
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:32 +0300
1937
+
1938
+
1939
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:32 +0300
1940
+
1941
+
1942
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:32 +0300
1943
+ Processing by Tail::LogsController#grep as */*
1944
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1945
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.1ms)
1946
+ Completed 200 OK in 45ms (Views: 37.7ms)
1947
+
1948
+
1949
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1950
+
1951
+
1952
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1953
+
1954
+
1955
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1956
+ Processing by Tail::LogsController#grep as */*
1957
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1958
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.2ms)
1959
+ Completed 200 OK in 46ms (Views: 37.9ms)
1960
+
1961
+
1962
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1963
+
1964
+
1965
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1966
+
1967
+
1968
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1969
+ Processing by Tail::LogsController#grep as */*
1970
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1971
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (27.4ms)
1972
+ Completed 200 OK in 46ms (Views: 38.1ms)
1973
+
1974
+
1975
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1976
+
1977
+
1978
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1979
+
1980
+
1981
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1982
+ Processing by Tail::LogsController#grep as */*
1983
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1984
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (18.2ms)
1985
+ Completed 200 OK in 35ms (Views: 28.1ms)
1986
+
1987
+
1988
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1989
+
1990
+
1991
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1992
+
1993
+
1994
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
1995
+ Processing by Tail::LogsController#grep as */*
1996
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
1997
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.0ms)
1998
+ Completed 200 OK in 39ms (Views: 32.2ms)
1999
+
2000
+
2001
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
2002
+
2003
+
2004
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:33 +0300
2005
+
2006
+
2007
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:34 +0300
2008
+ Processing by Tail::LogsController#grep as */*
2009
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2010
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.4ms)
2011
+ Completed 200 OK in 42ms (Views: 32.9ms)
2012
+
2013
+
2014
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:35 +0300
2015
+
2016
+
2017
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:35 +0300
2018
+
2019
+
2020
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:35 +0300
2021
+ Processing by Tail::LogsController#grep as */*
2022
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2023
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.5ms)
2024
+ Completed 200 OK in 42ms (Views: 32.7ms)
2025
+
2026
+
2027
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:35 +0300
2028
+
2029
+
2030
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:35 +0300
2031
+
2032
+
2033
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2034
+ Processing by Tail::LogsController#grep as */*
2035
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2036
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.6ms)
2037
+ Completed 200 OK in 53ms (Views: 43.2ms)
2038
+
2039
+
2040
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2041
+
2042
+
2043
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2044
+
2045
+
2046
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2047
+ Processing by Tail::LogsController#grep as */*
2048
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2049
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.5ms)
2050
+ Completed 200 OK in 50ms (Views: 42.9ms)
2051
+
2052
+
2053
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2054
+
2055
+
2056
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2057
+
2058
+
2059
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2060
+ Processing by Tail::LogsController#grep as */*
2061
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2062
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.9ms)
2063
+ Completed 200 OK in 47ms (Views: 38.5ms)
2064
+
2065
+
2066
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2067
+
2068
+
2069
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2070
+
2071
+
2072
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2073
+ Processing by Tail::LogsController#grep as */*
2074
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2075
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.9ms)
2076
+ Completed 200 OK in 42ms (Views: 33.6ms)
2077
+
2078
+
2079
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2080
+
2081
+
2082
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2083
+
2084
+
2085
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 03:15:36 +0300
2086
+ Processing by Tail::LogsController#grep as */*
2087
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2088
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.8ms)
2089
+ Completed 200 OK in 41ms (Views: 31.7ms)
2090
+
2091
+
2092
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:37 +0300
2093
+
2094
+
2095
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 03:15:37 +0300
2096
+
2097
+
2098
+ Started GET "/tail/?file_name=test.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:03 +0300
2099
+ Processing by Tail::LogsController#index as HTML
2100
+ Parameters: {"file_name"=>"test.log", "n"=>"757"}
2101
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (0.4ms)
2102
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (3.0ms)
2103
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (20.8ms)
2104
+ Completed 200 OK in 61ms (Views: 52.3ms)
2105
+
2106
+
2107
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:04 +0300
2108
+
2109
+
2110
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:04 +0300
2111
+
2112
+
2113
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:02:04 +0300
2114
+
2115
+
2116
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:02:04 +0300
2117
+
2118
+
2119
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:02:04 +0300
2120
+
2121
+
2122
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2123
+ Processing by Tail::LogsController#index as HTML
2124
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2125
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (34.4ms)
2126
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.1ms)
2127
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (38.9ms)
2128
+ Completed 200 OK in 72ms (Views: 44.9ms)
2129
+
2130
+
2131
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2132
+
2133
+
2134
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2135
+
2136
+
2137
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2138
+
2139
+
2140
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2141
+
2142
+
2143
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2144
+
2145
+
2146
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:02:05 +0300
2147
+
2148
+
2149
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2150
+ Processing by Tail::LogsController#grep as */*
2151
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2152
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (30.2ms)
2153
+ Completed 200 OK in 69ms (Views: 46.6ms)
2154
+
2155
+
2156
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2157
+
2158
+
2159
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2160
+
2161
+
2162
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2163
+ Processing by Tail::LogsController#grep as */*
2164
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2165
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (70.5ms)
2166
+ Completed 200 OK in 103ms (Views: 87.3ms)
2167
+
2168
+
2169
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2170
+
2171
+
2172
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:11 +0300
2173
+
2174
+
2175
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2176
+ Processing by Tail::LogsController#grep as */*
2177
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2178
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (34.6ms)
2179
+ Completed 200 OK in 63ms (Views: 49.1ms)
2180
+
2181
+
2182
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2183
+
2184
+
2185
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2186
+
2187
+
2188
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2189
+ Processing by Tail::LogsController#grep as */*
2190
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2191
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.9ms)
2192
+ Completed 200 OK in 44ms (Views: 35.5ms)
2193
+
2194
+
2195
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2196
+
2197
+
2198
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2199
+
2200
+
2201
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2202
+ Processing by Tail::LogsController#grep as */*
2203
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2204
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.2ms)
2205
+ Completed 200 OK in 50ms (Views: 33.6ms)
2206
+
2207
+
2208
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2209
+
2210
+
2211
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:12 +0300
2212
+
2213
+
2214
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2215
+ Processing by Tail::LogsController#grep as */*
2216
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2217
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.4ms)
2218
+ Completed 200 OK in 48ms (Views: 39.7ms)
2219
+
2220
+
2221
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2222
+
2223
+
2224
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2225
+
2226
+
2227
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2228
+ Processing by Tail::LogsController#grep as */*
2229
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2230
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.9ms)
2231
+ Completed 200 OK in 47ms (Views: 39.1ms)
2232
+
2233
+
2234
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2235
+
2236
+
2237
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2238
+
2239
+
2240
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2241
+ Processing by Tail::LogsController#grep as */*
2242
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2243
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (26.4ms)
2244
+ Completed 200 OK in 51ms (Views: 41.0ms)
2245
+
2246
+
2247
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2248
+
2249
+
2250
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2251
+
2252
+
2253
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2254
+ Processing by Tail::LogsController#grep as */*
2255
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2256
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.7ms)
2257
+ Completed 200 OK in 43ms (Views: 33.9ms)
2258
+
2259
+
2260
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2261
+
2262
+
2263
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:02:19 +0300
2264
+
2265
+
2266
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2267
+ Processing by Tail::LogsController#index as HTML
2268
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2269
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (14.6ms)
2270
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.0ms)
2271
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (33.9ms)
2272
+ Completed 200 OK in 50ms (Views: 40.9ms)
2273
+
2274
+
2275
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2276
+
2277
+
2278
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2279
+
2280
+
2281
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2282
+
2283
+
2284
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2285
+
2286
+
2287
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2288
+
2289
+
2290
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2291
+
2292
+
2293
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:08:33 +0300
2294
+
2295
+
2296
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:08:38 +0300
2297
+ Processing by Tail::LogsController#grep as */*
2298
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
2299
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (34.4ms)
2300
+ Completed 200 OK in 64ms (Views: 52.2ms)
2301
+
2302
+
2303
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:08:38 +0300
2304
+
2305
+
2306
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:08:38 +0300
2307
+
2308
+
2309
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:09:31 +0300
2310
+ Processing by Tail::LogsController#index as HTML
2311
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2312
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (15.1ms)
2313
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
2314
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (19.5ms)
2315
+ Completed 200 OK in 51ms (Views: 44.2ms)
2316
+
2317
+
2318
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:31 +0300
2319
+
2320
+
2321
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:31 +0300
2322
+
2323
+
2324
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:09:31 +0300
2325
+
2326
+
2327
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:09:31 +0300
2328
+
2329
+
2330
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:09:32 +0300
2331
+
2332
+
2333
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:09:32 +0300
2334
+
2335
+
2336
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:09:32 +0300
2337
+
2338
+
2339
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:09:35 +0300
2340
+ Processing by Tail::LogsController#grep as */*
2341
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
2342
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (27.3ms)
2343
+ Completed 200 OK in 54ms (Views: 40.8ms)
2344
+
2345
+
2346
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:35 +0300
2347
+
2348
+
2349
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:35 +0300
2350
+
2351
+
2352
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2353
+ Processing by Tail::LogsController#index as HTML
2354
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2355
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (32.4ms)
2356
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
2357
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (36.9ms)
2358
+ Completed 200 OK in 74ms (Views: 67.3ms)
2359
+
2360
+
2361
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2362
+
2363
+
2364
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2365
+
2366
+
2367
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2368
+
2369
+
2370
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2371
+
2372
+
2373
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2374
+
2375
+
2376
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2377
+
2378
+
2379
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:09:39 +0300
2380
+
2381
+
2382
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:09:46 +0300
2383
+ Processing by Tail::LogsController#grep as */*
2384
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
2385
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (29.2ms)
2386
+ Completed 200 OK in 54ms (Views: 43.2ms)
2387
+
2388
+
2389
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:46 +0300
2390
+
2391
+
2392
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:46 +0300
2393
+
2394
+
2395
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:09:54 +0300
2396
+ Processing by Tail::LogsController#grep as */*
2397
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
2398
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.1ms)
2399
+ Completed 200 OK in 55ms (Views: 40.3ms)
2400
+
2401
+
2402
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:54 +0300
2403
+
2404
+
2405
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:09:54 +0300
2406
+
2407
+
2408
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2409
+ Processing by Tail::LogsController#index as HTML
2410
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2411
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (14.5ms)
2412
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
2413
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (20.5ms)
2414
+ Completed 200 OK in 32ms (Views: 25.2ms)
2415
+
2416
+
2417
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2418
+
2419
+
2420
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2421
+
2422
+
2423
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2424
+
2425
+
2426
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2427
+
2428
+
2429
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2430
+
2431
+
2432
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2433
+
2434
+
2435
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:13:01 +0300
2436
+
2437
+
2438
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:03 +0300
2439
+ Processing by Tail::LogsController#grep as */*
2440
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2441
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.7ms)
2442
+ Completed 200 OK in 47ms (Views: 39.5ms)
2443
+
2444
+
2445
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:03 +0300
2446
+
2447
+
2448
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:03 +0300
2449
+
2450
+
2451
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:05 +0300
2452
+ Processing by Tail::LogsController#grep as */*
2453
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2454
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.8ms)
2455
+ Completed 200 OK in 51ms (Views: 42.0ms)
2456
+
2457
+
2458
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:05 +0300
2459
+
2460
+
2461
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:05 +0300
2462
+
2463
+
2464
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:08 +0300
2465
+ Processing by Tail::LogsController#grep as */*
2466
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2467
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.1ms)
2468
+ Completed 200 OK in 50ms (Views: 36.6ms)
2469
+
2470
+
2471
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:08 +0300
2472
+
2473
+
2474
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:08 +0300
2475
+
2476
+
2477
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:12 +0300
2478
+ Processing by Tail::LogsController#grep as */*
2479
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2480
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.8ms)
2481
+ Completed 200 OK in 40ms (Views: 32.4ms)
2482
+
2483
+
2484
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:12 +0300
2485
+
2486
+
2487
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:12 +0300
2488
+
2489
+
2490
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2491
+ Processing by Tail::LogsController#grep as */*
2492
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2493
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.6ms)
2494
+ Completed 200 OK in 49ms (Views: 32.7ms)
2495
+
2496
+
2497
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2498
+
2499
+
2500
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2501
+
2502
+
2503
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2504
+ Processing by Tail::LogsController#grep as */*
2505
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2506
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.0ms)
2507
+ Completed 200 OK in 42ms (Views: 32.8ms)
2508
+
2509
+
2510
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2511
+
2512
+
2513
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2514
+
2515
+
2516
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2517
+ Processing by Tail::LogsController#grep as */*
2518
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2519
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.2ms)
2520
+ Completed 200 OK in 38ms (Views: 30.4ms)
2521
+
2522
+
2523
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2524
+
2525
+
2526
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2527
+
2528
+
2529
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2530
+ Processing by Tail::LogsController#grep as */*
2531
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2532
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.0ms)
2533
+ Completed 200 OK in 40ms (Views: 32.0ms)
2534
+
2535
+
2536
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2537
+
2538
+
2539
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:19 +0300
2540
+
2541
+
2542
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:21 +0300
2543
+ Processing by Tail::LogsController#grep as */*
2544
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2545
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.9ms)
2546
+ Completed 200 OK in 56ms (Views: 39.5ms)
2547
+
2548
+
2549
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:21 +0300
2550
+
2551
+
2552
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:21 +0300
2553
+
2554
+
2555
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:21 +0300
2556
+ Processing by Tail::LogsController#grep as */*
2557
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2558
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.0ms)
2559
+ Completed 200 OK in 47ms (Views: 37.8ms)
2560
+
2561
+
2562
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2563
+
2564
+
2565
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2566
+
2567
+
2568
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2569
+ Processing by Tail::LogsController#grep as */*
2570
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2571
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (17.2ms)
2572
+ Completed 200 OK in 38ms (Views: 28.9ms)
2573
+
2574
+
2575
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2576
+
2577
+
2578
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2579
+
2580
+
2581
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2582
+ Processing by Tail::LogsController#grep as */*
2583
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2584
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.8ms)
2585
+ Completed 200 OK in 44ms (Views: 34.5ms)
2586
+
2587
+
2588
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2589
+
2590
+
2591
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2592
+
2593
+
2594
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2595
+ Processing by Tail::LogsController#grep as */*
2596
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2597
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.1ms)
2598
+ Completed 200 OK in 46ms (Views: 35.8ms)
2599
+
2600
+
2601
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2602
+
2603
+
2604
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2605
+
2606
+
2607
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2608
+ Processing by Tail::LogsController#grep as */*
2609
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2610
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (31.4ms)
2611
+ Completed 200 OK in 55ms (Views: 45.5ms)
2612
+
2613
+
2614
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2615
+
2616
+
2617
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:13:22 +0300
2618
+
2619
+
2620
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:29 +0300
2621
+ Processing by Tail::LogsController#index as HTML
2622
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2623
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (16.1ms)
2624
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
2625
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (21.1ms)
2626
+ Completed 200 OK in 55ms (Views: 48.2ms)
2627
+
2628
+
2629
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2630
+
2631
+
2632
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2633
+
2634
+
2635
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2636
+
2637
+
2638
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2639
+
2640
+
2641
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2642
+
2643
+
2644
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2645
+
2646
+
2647
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2648
+
2649
+
2650
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2651
+ Processing by Tail::LogsController#grep as */*
2652
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2653
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.0ms)
2654
+ Completed 200 OK in 41ms (Views: 31.2ms)
2655
+
2656
+
2657
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2658
+
2659
+
2660
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:30 +0300
2661
+
2662
+
2663
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2664
+ Processing by Tail::LogsController#grep as */*
2665
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2666
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.8ms)
2667
+ Completed 200 OK in 48ms (Views: 37.8ms)
2668
+
2669
+
2670
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2671
+
2672
+
2673
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2674
+
2675
+
2676
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2677
+ Processing by Tail::LogsController#grep as */*
2678
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2679
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.6ms)
2680
+ Completed 200 OK in 42ms (Views: 32.0ms)
2681
+
2682
+
2683
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2684
+
2685
+
2686
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2687
+
2688
+
2689
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2690
+ Processing by Tail::LogsController#grep as */*
2691
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2692
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.6ms)
2693
+ Completed 200 OK in 48ms (Views: 39.9ms)
2694
+
2695
+
2696
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2697
+
2698
+
2699
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2700
+
2701
+
2702
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2703
+ Processing by Tail::LogsController#grep as */*
2704
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2705
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.0ms)
2706
+ Completed 200 OK in 51ms (Views: 37.7ms)
2707
+
2708
+
2709
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2710
+
2711
+
2712
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2713
+
2714
+
2715
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:15:35 +0300
2716
+ Processing by Tail::LogsController#grep as */*
2717
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2718
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.0ms)
2719
+ Completed 200 OK in 42ms (Views: 33.5ms)
2720
+
2721
+
2722
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:36 +0300
2723
+
2724
+
2725
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:15:36 +0300
2726
+
2727
+
2728
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2729
+ Processing by Tail::LogsController#index as HTML
2730
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2731
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (14.4ms)
2732
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
2733
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (19.0ms)
2734
+ Completed 200 OK in 47ms (Views: 40.2ms)
2735
+
2736
+
2737
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2738
+
2739
+
2740
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2741
+
2742
+
2743
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2744
+
2745
+
2746
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2747
+
2748
+
2749
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2750
+
2751
+
2752
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2753
+
2754
+
2755
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2756
+
2757
+
2758
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:42 +0300
2759
+ Processing by Tail::LogsController#grep as */*
2760
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2761
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.5ms)
2762
+ Completed 200 OK in 46ms (Views: 35.9ms)
2763
+
2764
+
2765
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:43 +0300
2766
+
2767
+
2768
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:43 +0300
2769
+
2770
+
2771
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:44 +0300
2772
+ Processing by Tail::LogsController#grep as */*
2773
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2774
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.7ms)
2775
+ Completed 200 OK in 42ms (Views: 34.1ms)
2776
+
2777
+
2778
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:44 +0300
2779
+
2780
+
2781
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:44 +0300
2782
+
2783
+
2784
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:47 +0300
2785
+ Processing by Tail::LogsController#grep as */*
2786
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2787
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.6ms)
2788
+ Completed 200 OK in 41ms (Views: 31.7ms)
2789
+
2790
+
2791
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:47 +0300
2792
+
2793
+
2794
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:47 +0300
2795
+
2796
+
2797
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:48 +0300
2798
+ Processing by Tail::LogsController#grep as */*
2799
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2800
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (28.9ms)
2801
+ Completed 200 OK in 51ms (Views: 42.9ms)
2802
+
2803
+
2804
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:48 +0300
2805
+
2806
+
2807
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:48 +0300
2808
+
2809
+
2810
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:49 +0300
2811
+ Processing by Tail::LogsController#grep as */*
2812
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2813
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (17.4ms)
2814
+ Completed 200 OK in 39ms (Views: 29.8ms)
2815
+
2816
+
2817
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:49 +0300
2818
+
2819
+
2820
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:49 +0300
2821
+
2822
+
2823
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:19:52 +0300
2824
+ Processing by Tail::LogsController#grep as */*
2825
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2826
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (20.3ms)
2827
+ Completed 200 OK in 42ms (Views: 32.8ms)
2828
+
2829
+
2830
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:52 +0300
2831
+
2832
+
2833
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:19:52 +0300
2834
+
2835
+
2836
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2837
+ Processing by Tail::LogsController#index as HTML
2838
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2839
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (17.5ms)
2840
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.1ms)
2841
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (23.5ms)
2842
+ Completed 200 OK in 40ms (Views: 31.2ms)
2843
+
2844
+
2845
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2846
+
2847
+
2848
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2849
+
2850
+
2851
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2852
+
2853
+
2854
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2855
+
2856
+
2857
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2858
+
2859
+
2860
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2861
+
2862
+
2863
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2864
+
2865
+
2866
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2867
+ Processing by Tail::LogsController#grep as */*
2868
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2869
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (17.3ms)
2870
+ Completed 200 OK in 36ms (Views: 28.8ms)
2871
+
2872
+
2873
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2874
+
2875
+
2876
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:13 +0300
2877
+
2878
+
2879
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:15 +0300
2880
+ Processing by Tail::LogsController#grep as */*
2881
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2882
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.8ms)
2883
+ Completed 200 OK in 45ms (Views: 37.6ms)
2884
+
2885
+
2886
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:15 +0300
2887
+
2888
+
2889
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:15 +0300
2890
+
2891
+
2892
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:20 +0300
2893
+ Processing by Tail::LogsController#grep as */*
2894
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2895
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (35.7ms)
2896
+ Completed 200 OK in 60ms (Views: 50.8ms)
2897
+
2898
+
2899
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:20 +0300
2900
+
2901
+
2902
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2903
+
2904
+
2905
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2906
+ Processing by Tail::LogsController#grep as */*
2907
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2908
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.5ms)
2909
+ Completed 200 OK in 50ms (Views: 38.3ms)
2910
+
2911
+
2912
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2913
+
2914
+
2915
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2916
+
2917
+
2918
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2919
+ Processing by Tail::LogsController#grep as */*
2920
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2921
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.1ms)
2922
+ Completed 200 OK in 46ms (Views: 36.3ms)
2923
+
2924
+
2925
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2926
+
2927
+
2928
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2929
+
2930
+
2931
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2932
+ Processing by Tail::LogsController#grep as */*
2933
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2934
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (25.9ms)
2935
+ Completed 200 OK in 47ms (Views: 36.9ms)
2936
+
2937
+
2938
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2939
+
2940
+
2941
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2942
+
2943
+
2944
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2945
+ Processing by Tail::LogsController#grep as */*
2946
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2947
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.6ms)
2948
+ Completed 200 OK in 45ms (Views: 35.1ms)
2949
+
2950
+
2951
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2952
+
2953
+
2954
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2955
+
2956
+
2957
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2958
+ Processing by Tail::LogsController#grep as */*
2959
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2960
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (21.9ms)
2961
+ Completed 200 OK in 44ms (Views: 34.2ms)
2962
+
2963
+
2964
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2965
+
2966
+
2967
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:21 +0300
2968
+
2969
+
2970
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2971
+ Processing by Tail::LogsController#grep as */*
2972
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2973
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (33.9ms)
2974
+ Completed 200 OK in 55ms (Views: 45.9ms)
2975
+
2976
+
2977
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2978
+
2979
+
2980
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2981
+
2982
+
2983
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2984
+ Processing by Tail::LogsController#grep as */*
2985
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2986
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (24.7ms)
2987
+ Completed 200 OK in 46ms (Views: 37.6ms)
2988
+
2989
+
2990
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2991
+
2992
+
2993
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2994
+
2995
+
2996
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
2997
+ Processing by Tail::LogsController#grep as */*
2998
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
2999
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.5ms)
3000
+ Completed 200 OK in 35ms (Views: 26.2ms)
3001
+
3002
+
3003
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
3004
+
3005
+
3006
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
3007
+
3008
+
3009
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:23 +0300
3010
+ Processing by Tail::LogsController#grep as */*
3011
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
3012
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (16.4ms)
3013
+ Completed 200 OK in 35ms (Views: 27.9ms)
3014
+
3015
+
3016
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:24 +0300
3017
+
3018
+
3019
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:24 +0300
3020
+
3021
+
3022
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:24 +0300
3023
+ Processing by Tail::LogsController#grep as */*
3024
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
3025
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (22.7ms)
3026
+ Completed 200 OK in 43ms (Views: 34.6ms)
3027
+
3028
+
3029
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:24 +0300
3030
+
3031
+
3032
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:24 +0300
3033
+
3034
+
3035
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:20:32 +0300
3036
+ Processing by Tail::LogsController#grep as */*
3037
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
3038
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (17.8ms)
3039
+ Completed 200 OK in 39ms (Views: 29.1ms)
3040
+
3041
+
3042
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:32 +0300
3043
+
3044
+
3045
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:32 +0300
3046
+
3047
+
3048
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:20:35 +0300
3049
+ Processing by Tail::LogsController#grep as */*
3050
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
3051
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (37.6ms)
3052
+ Completed 200 OK in 68ms (Views: 54.3ms)
3053
+
3054
+
3055
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:35 +0300
3056
+
3057
+
3058
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:35 +0300
3059
+
3060
+
3061
+ Started GET "/tail/grep?file_name=development.log&n=757&query=" for 127.0.0.1 at 2014-03-24 16:20:36 +0300
3062
+ Processing by Tail::LogsController#grep as */*
3063
+ Parameters: {"file_name"=>"development.log", "n"=>"757", "query"=>""}
3064
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (33.3ms)
3065
+ Completed 200 OK in 58ms (Views: 45.6ms)
3066
+
3067
+
3068
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:36 +0300
3069
+
3070
+
3071
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:20:36 +0300
3072
+
3073
+
3074
+ Started GET "/tail/?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3075
+ Processing by Tail::LogsController#index as HTML
3076
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
3077
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (20.9ms)
3078
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
3079
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (28.5ms)
3080
+ Completed 200 OK in 42ms (Views: 33.5ms)
3081
+
3082
+
3083
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3084
+
3085
+
3086
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3087
+
3088
+
3089
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3090
+
3091
+
3092
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3093
+
3094
+
3095
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3096
+
3097
+
3098
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3099
+
3100
+
3101
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:21:45 +0300
3102
+
3103
+
3104
+ Started GET "/tail/grep?file_name=development.log&n=757" for 127.0.0.1 at 2014-03-24 16:21:49 +0300
3105
+ Processing by Tail::LogsController#grep as */*
3106
+ Parameters: {"file_name"=>"development.log", "n"=>"757"}
3107
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (23.8ms)
3108
+ Completed 200 OK in 44ms (Views: 37.0ms)
3109
+
3110
+
3111
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:21:49 +0300
3112
+
3113
+
3114
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:21:49 +0300
3115
+
3116
+
3117
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 16:22:01 +0300
3118
+ Processing by Tail::LogsController#index as HTML
3119
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (4.6ms)
3120
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.1ms)
3121
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (9.5ms)
3122
+ Completed 200 OK in 20ms (Views: 15.7ms)
3123
+
3124
+
3125
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3126
+
3127
+
3128
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3129
+
3130
+
3131
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3132
+
3133
+
3134
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3135
+
3136
+
3137
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3138
+
3139
+
3140
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3141
+
3142
+
3143
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:22:02 +0300
3144
+
3145
+
3146
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3147
+ Processing by Tail::LogsController#grep as */*
3148
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.5ms)
3149
+ Completed 200 OK in 25ms (Views: 20.3ms)
3150
+
3151
+
3152
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3153
+
3154
+
3155
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3156
+
3157
+
3158
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3159
+ Processing by Tail::LogsController#grep as */*
3160
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.1ms)
3161
+ Completed 200 OK in 25ms (Views: 17.8ms)
3162
+
3163
+
3164
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3165
+
3166
+
3167
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3168
+
3169
+
3170
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3171
+ Processing by Tail::LogsController#grep as */*
3172
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (6.7ms)
3173
+ Completed 200 OK in 29ms (Views: 24.1ms)
3174
+
3175
+
3176
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3177
+
3178
+
3179
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3180
+
3181
+
3182
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3183
+ Processing by Tail::LogsController#grep as */*
3184
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.5ms)
3185
+ Completed 200 OK in 25ms (Views: 19.2ms)
3186
+
3187
+
3188
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3189
+
3190
+
3191
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3192
+
3193
+
3194
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3195
+ Processing by Tail::LogsController#grep as */*
3196
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (6.2ms)
3197
+ Completed 200 OK in 32ms (Views: 26.8ms)
3198
+
3199
+
3200
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3201
+
3202
+
3203
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:05 +0300
3204
+
3205
+
3206
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:06 +0300
3207
+ Processing by Tail::LogsController#grep as */*
3208
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.2ms)
3209
+ Completed 200 OK in 23ms (Views: 19.4ms)
3210
+
3211
+
3212
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:06 +0300
3213
+
3214
+
3215
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:06 +0300
3216
+
3217
+
3218
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:09 +0300
3219
+ Processing by Tail::LogsController#grep as */*
3220
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.4ms)
3221
+ Completed 200 OK in 22ms (Views: 16.4ms)
3222
+
3223
+
3224
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:09 +0300
3225
+
3226
+
3227
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:09 +0300
3228
+
3229
+
3230
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3231
+ Processing by Tail::LogsController#index as HTML
3232
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (1.5ms)
3233
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
3234
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (5.9ms)
3235
+ Completed 200 OK in 31ms (Views: 25.8ms)
3236
+
3237
+
3238
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3239
+
3240
+
3241
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3242
+
3243
+
3244
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3245
+
3246
+
3247
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3248
+
3249
+
3250
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3251
+
3252
+
3253
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3254
+
3255
+
3256
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:22:25 +0300
3257
+
3258
+
3259
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3260
+ Processing by Tail::LogsController#grep as */*
3261
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (1.8ms)
3262
+ Completed 200 OK in 18ms (Views: 13.2ms)
3263
+
3264
+
3265
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3266
+
3267
+
3268
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3269
+
3270
+
3271
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3272
+ Processing by Tail::LogsController#grep as */*
3273
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (1.8ms)
3274
+ Completed 200 OK in 17ms (Views: 12.6ms)
3275
+
3276
+
3277
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3278
+
3279
+
3280
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3281
+
3282
+
3283
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3284
+ Processing by Tail::LogsController#grep as */*
3285
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.4ms)
3286
+ Completed 200 OK in 22ms (Views: 13.7ms)
3287
+
3288
+
3289
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3290
+
3291
+
3292
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3293
+
3294
+
3295
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3296
+ Processing by Tail::LogsController#grep as */*
3297
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.2ms)
3298
+ Completed 200 OK in 20ms (Views: 14.5ms)
3299
+
3300
+
3301
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3302
+
3303
+
3304
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3305
+
3306
+
3307
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3308
+ Processing by Tail::LogsController#grep as */*
3309
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (1.9ms)
3310
+ Completed 200 OK in 27ms (Views: 22.0ms)
3311
+
3312
+
3313
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3314
+
3315
+
3316
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:27 +0300
3317
+
3318
+
3319
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3320
+ Processing by Tail::LogsController#grep as */*
3321
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.3ms)
3322
+ Completed 200 OK in 25ms (Views: 19.4ms)
3323
+
3324
+
3325
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3326
+
3327
+
3328
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3329
+
3330
+
3331
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3332
+ Processing by Tail::LogsController#grep as */*
3333
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.0ms)
3334
+ Completed 200 OK in 26ms (Views: 21.4ms)
3335
+
3336
+
3337
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3338
+
3339
+
3340
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3341
+
3342
+
3343
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3344
+ Processing by Tail::LogsController#grep as */*
3345
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.4ms)
3346
+ Completed 200 OK in 27ms (Views: 19.7ms)
3347
+
3348
+
3349
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3350
+
3351
+
3352
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:22:50 +0300
3353
+
3354
+
3355
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 16:23:47 +0300
3356
+ Processing by Tail::LogsController#index as HTML
3357
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.5ms)
3358
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.2ms)
3359
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (9.0ms)
3360
+ Completed 200 OK in 42ms (Views: 38.0ms)
3361
+
3362
+
3363
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3364
+
3365
+
3366
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3367
+
3368
+
3369
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3370
+
3371
+
3372
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3373
+
3374
+
3375
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3376
+
3377
+
3378
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3379
+
3380
+
3381
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:23:48 +0300
3382
+
3383
+
3384
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3385
+ Processing by Tail::LogsController#grep as */*
3386
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.3ms)
3387
+ Completed 200 OK in 20ms (Views: 15.3ms)
3388
+
3389
+
3390
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3391
+
3392
+
3393
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3394
+
3395
+
3396
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3397
+ Processing by Tail::LogsController#grep as */*
3398
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.9ms)
3399
+ Completed 200 OK in 22ms (Views: 16.4ms)
3400
+
3401
+
3402
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3403
+
3404
+
3405
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:50 +0300
3406
+
3407
+
3408
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3409
+ Processing by Tail::LogsController#grep as */*
3410
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.0ms)
3411
+ Completed 200 OK in 23ms (Views: 18.3ms)
3412
+
3413
+
3414
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3415
+
3416
+
3417
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3418
+
3419
+
3420
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3421
+ Processing by Tail::LogsController#grep as */*
3422
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.5ms)
3423
+ Completed 200 OK in 22ms (Views: 18.2ms)
3424
+
3425
+
3426
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3427
+
3428
+
3429
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3430
+
3431
+
3432
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3433
+ Processing by Tail::LogsController#grep as */*
3434
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.3ms)
3435
+ Completed 200 OK in 24ms (Views: 18.2ms)
3436
+
3437
+
3438
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3439
+
3440
+
3441
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:23:53 +0300
3442
+
3443
+
3444
+ Started GET "/tail/grep?query=" for 127.0.0.1 at 2014-03-24 16:24:04 +0300
3445
+ Processing by Tail::LogsController#grep as */*
3446
+ Parameters: {"query"=>""}
3447
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.4ms)
3448
+ Completed 200 OK in 31ms (Views: 24.9ms)
3449
+
3450
+
3451
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:04 +0300
3452
+
3453
+
3454
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:04 +0300
3455
+
3456
+
3457
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3458
+ Processing by Tail::LogsController#index as HTML
3459
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.3ms)
3460
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
3461
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (6.9ms)
3462
+ Completed 200 OK in 39ms (Views: 34.8ms)
3463
+
3464
+
3465
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3466
+
3467
+
3468
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3469
+
3470
+
3471
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3472
+
3473
+
3474
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3475
+
3476
+
3477
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3478
+
3479
+
3480
+ Started GET "/assets/tail/warning.png" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3481
+
3482
+
3483
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:24:32 +0300
3484
+
3485
+
3486
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3487
+ Processing by Tail::LogsController#grep as */*
3488
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.4ms)
3489
+ Completed 200 OK in 26ms (Views: 19.9ms)
3490
+
3491
+
3492
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3493
+
3494
+
3495
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3496
+
3497
+
3498
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3499
+ Processing by Tail::LogsController#grep as */*
3500
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.8ms)
3501
+ Completed 200 OK in 21ms (Views: 16.2ms)
3502
+
3503
+
3504
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3505
+
3506
+
3507
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:34 +0300
3508
+
3509
+
3510
+ Started GET "/tail/grep?query=" for 127.0.0.1 at 2014-03-24 16:24:40 +0300
3511
+ Processing by Tail::LogsController#grep as */*
3512
+ Parameters: {"query"=>""}
3513
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.8ms)
3514
+ Completed 200 OK in 28ms (Views: 19.8ms)
3515
+
3516
+
3517
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:40 +0300
3518
+
3519
+
3520
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:24:40 +0300
3521
+
3522
+
3523
+ Started GET "/tail/" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3524
+ Processing by Tail::LogsController#index as HTML
3525
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (1.8ms)
3526
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (4.3ms)
3527
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (9.8ms)
3528
+ Completed 200 OK in 20ms (Views: 14.8ms)
3529
+
3530
+
3531
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3532
+
3533
+
3534
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3535
+
3536
+
3537
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3538
+
3539
+
3540
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3541
+
3542
+
3543
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3544
+
3545
+
3546
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3547
+
3548
+
3549
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:25:06 +0300
3550
+
3551
+
3552
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:25:09 +0300
3553
+ Processing by Tail::LogsController#grep as */*
3554
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.3ms)
3555
+ Completed 200 OK in 24ms (Views: 18.5ms)
3556
+
3557
+
3558
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:09 +0300
3559
+
3560
+
3561
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:09 +0300
3562
+
3563
+
3564
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3565
+ Processing by Tail::LogsController#grep as */*
3566
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.7ms)
3567
+ Completed 200 OK in 21ms (Views: 16.0ms)
3568
+
3569
+
3570
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3571
+
3572
+
3573
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3574
+
3575
+
3576
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3577
+ Processing by Tail::LogsController#grep as */*
3578
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.2ms)
3579
+ Completed 200 OK in 21ms (Views: 15.5ms)
3580
+
3581
+
3582
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3583
+
3584
+
3585
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3586
+
3587
+
3588
+ Started GET "/tail/grep" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3589
+ Processing by Tail::LogsController#grep as */*
3590
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (6.0ms)
3591
+ Completed 200 OK in 26ms (Views: 20.0ms)
3592
+
3593
+
3594
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3595
+
3596
+
3597
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:10 +0300
3598
+
3599
+
3600
+ Started GET "/tail/?file_name=test.log&n=100" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3601
+ Processing by Tail::LogsController#index as HTML
3602
+ Parameters: {"file_name"=>"test.log", "n"=>"100"}
3603
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (0.1ms)
3604
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.5ms)
3605
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (5.2ms)
3606
+ Completed 200 OK in 15ms (Views: 10.6ms)
3607
+
3608
+
3609
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3610
+
3611
+
3612
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3613
+
3614
+
3615
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3616
+
3617
+
3618
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3619
+
3620
+
3621
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3622
+
3623
+
3624
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:25:14 +0300
3625
+
3626
+
3627
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:25:15 +0300
3628
+ Processing by Tail::LogsController#index as HTML
3629
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3630
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.2ms)
3631
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
3632
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (6.8ms)
3633
+ Completed 200 OK in 17ms (Views: 12.6ms)
3634
+
3635
+
3636
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3637
+
3638
+
3639
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3640
+
3641
+
3642
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3643
+
3644
+
3645
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3646
+
3647
+
3648
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3649
+
3650
+
3651
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:25:16 +0300
3652
+
3653
+
3654
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3655
+ Processing by Tail::LogsController#index as HTML
3656
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3657
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.0ms)
3658
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
3659
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (6.4ms)
3660
+ Completed 200 OK in 37ms (Views: 33.2ms)
3661
+
3662
+
3663
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3664
+
3665
+
3666
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3667
+
3668
+
3669
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3670
+
3671
+
3672
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3673
+
3674
+
3675
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3676
+
3677
+
3678
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3679
+
3680
+
3681
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:27:19 +0300
3682
+
3683
+
3684
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3685
+ Processing by Tail::LogsController#index as HTML
3686
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3687
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.1ms)
3688
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.8ms)
3689
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (6.7ms)
3690
+ Completed 200 OK in 37ms (Views: 32.7ms)
3691
+
3692
+
3693
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3694
+
3695
+
3696
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3697
+
3698
+
3699
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3700
+
3701
+
3702
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3703
+
3704
+
3705
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3706
+
3707
+
3708
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3709
+
3710
+
3711
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:27:25 +0300
3712
+
3713
+
3714
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:33 +0300
3715
+ Processing by Tail::LogsController#index as HTML
3716
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3717
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.6ms)
3718
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
3719
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (7.6ms)
3720
+ Completed 200 OK in 35ms (Views: 30.2ms)
3721
+
3722
+
3723
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3724
+
3725
+
3726
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3727
+
3728
+
3729
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3730
+
3731
+
3732
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3733
+
3734
+
3735
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3736
+
3737
+
3738
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3739
+
3740
+
3741
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:27:34 +0300
3742
+
3743
+
3744
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:45 +0300
3745
+ Processing by Tail::LogsController#index as HTML
3746
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3747
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.5ms)
3748
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.0ms)
3749
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (7.3ms)
3750
+ Completed 200 OK in 36ms (Views: 30.8ms)
3751
+
3752
+
3753
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:45 +0300
3754
+
3755
+
3756
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:45 +0300
3757
+
3758
+
3759
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:45 +0300
3760
+
3761
+
3762
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:45 +0300
3763
+
3764
+
3765
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:27:46 +0300
3766
+
3767
+
3768
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:27:46 +0300
3769
+
3770
+
3771
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:27:46 +0300
3772
+
3773
+
3774
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3775
+ Processing by Tail::LogsController#index as HTML
3776
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3777
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (1.7ms)
3778
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.7ms)
3779
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (5.8ms)
3780
+ Completed 200 OK in 30ms (Views: 25.4ms)
3781
+
3782
+
3783
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3784
+
3785
+
3786
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3787
+
3788
+
3789
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3790
+
3791
+
3792
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3793
+
3794
+
3795
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3796
+
3797
+
3798
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3799
+
3800
+
3801
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:27:49 +0300
3802
+
3803
+
3804
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3805
+ Processing by Tail::LogsController#grep as */*
3806
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3807
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (6.1ms)
3808
+ Completed 200 OK in 21ms (Views: 16.8ms)
3809
+
3810
+
3811
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3812
+
3813
+
3814
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3815
+
3816
+
3817
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3818
+ Processing by Tail::LogsController#grep as */*
3819
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3820
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.2ms)
3821
+ Completed 200 OK in 19ms (Views: 14.8ms)
3822
+
3823
+
3824
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3825
+
3826
+
3827
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3828
+
3829
+
3830
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3831
+ Processing by Tail::LogsController#grep as */*
3832
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3833
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.9ms)
3834
+ Completed 200 OK in 22ms (Views: 18.4ms)
3835
+
3836
+
3837
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3838
+
3839
+
3840
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3841
+
3842
+
3843
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3844
+ Processing by Tail::LogsController#grep as */*
3845
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3846
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.7ms)
3847
+ Completed 200 OK in 20ms (Views: 16.0ms)
3848
+
3849
+
3850
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3851
+
3852
+
3853
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:51 +0300
3854
+
3855
+
3856
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3857
+ Processing by Tail::LogsController#grep as */*
3858
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3859
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (1.9ms)
3860
+ Completed 200 OK in 17ms (Views: 12.2ms)
3861
+
3862
+
3863
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3864
+
3865
+
3866
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3867
+
3868
+
3869
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3870
+ Processing by Tail::LogsController#grep as */*
3871
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3872
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.6ms)
3873
+ Completed 200 OK in 18ms (Views: 14.1ms)
3874
+
3875
+
3876
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3877
+
3878
+
3879
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3880
+
3881
+
3882
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3883
+ Processing by Tail::LogsController#grep as */*
3884
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3885
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.6ms)
3886
+ Completed 200 OK in 22ms (Views: 15.7ms)
3887
+
3888
+
3889
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3890
+
3891
+
3892
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3893
+
3894
+
3895
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3896
+ Processing by Tail::LogsController#grep as */*
3897
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3898
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.2ms)
3899
+ Completed 200 OK in 18ms (Views: 13.8ms)
3900
+
3901
+
3902
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3903
+
3904
+
3905
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:54 +0300
3906
+
3907
+
3908
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3909
+ Processing by Tail::LogsController#grep as */*
3910
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3911
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.3ms)
3912
+ Completed 200 OK in 23ms (Views: 18.9ms)
3913
+
3914
+
3915
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3916
+
3917
+
3918
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3919
+
3920
+
3921
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3922
+ Processing by Tail::LogsController#grep as */*
3923
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3924
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (11.1ms)
3925
+ Completed 200 OK in 42ms (Views: 36.3ms)
3926
+
3927
+
3928
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3929
+
3930
+
3931
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3932
+
3933
+
3934
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3935
+ Processing by Tail::LogsController#grep as */*
3936
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3937
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.6ms)
3938
+ Completed 200 OK in 24ms (Views: 19.5ms)
3939
+
3940
+
3941
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3942
+
3943
+
3944
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3945
+
3946
+
3947
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3948
+ Processing by Tail::LogsController#grep as */*
3949
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3950
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.0ms)
3951
+ Completed 200 OK in 23ms (Views: 17.5ms)
3952
+
3953
+
3954
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3955
+
3956
+
3957
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3958
+
3959
+
3960
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:58 +0300
3961
+ Processing by Tail::LogsController#grep as */*
3962
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3963
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (1.9ms)
3964
+ Completed 200 OK in 18ms (Views: 13.8ms)
3965
+
3966
+
3967
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3968
+
3969
+
3970
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3971
+
3972
+
3973
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3974
+ Processing by Tail::LogsController#grep as */*
3975
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3976
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.0ms)
3977
+ Completed 200 OK in 22ms (Views: 18.1ms)
3978
+
3979
+
3980
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3981
+
3982
+
3983
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3984
+
3985
+
3986
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3987
+ Processing by Tail::LogsController#grep as */*
3988
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
3989
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.1ms)
3990
+ Completed 200 OK in 20ms (Views: 14.6ms)
3991
+
3992
+
3993
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3994
+
3995
+
3996
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
3997
+
3998
+
3999
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4000
+ Processing by Tail::LogsController#grep as */*
4001
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4002
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.4ms)
4003
+ Completed 200 OK in 24ms (Views: 19.3ms)
4004
+
4005
+
4006
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4007
+
4008
+
4009
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4010
+
4011
+
4012
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4013
+ Processing by Tail::LogsController#grep as */*
4014
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4015
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.4ms)
4016
+ Completed 200 OK in 21ms (Views: 16.1ms)
4017
+
4018
+
4019
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4020
+
4021
+
4022
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4023
+
4024
+
4025
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4026
+ Processing by Tail::LogsController#grep as */*
4027
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4028
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.8ms)
4029
+ Completed 200 OK in 23ms (Views: 17.5ms)
4030
+
4031
+
4032
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4033
+
4034
+
4035
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4036
+
4037
+
4038
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4039
+ Processing by Tail::LogsController#grep as */*
4040
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4041
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.9ms)
4042
+ Completed 200 OK in 23ms (Views: 17.3ms)
4043
+
4044
+
4045
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4046
+
4047
+
4048
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4049
+
4050
+
4051
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4052
+ Processing by Tail::LogsController#grep as */*
4053
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4054
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.6ms)
4055
+ Completed 200 OK in 18ms (Views: 13.7ms)
4056
+
4057
+
4058
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:27:59 +0300
4059
+
4060
+
4061
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:28:00 +0300
4062
+
4063
+
4064
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:28:00 +0300
4065
+ Processing by Tail::LogsController#grep as */*
4066
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4067
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.1ms)
4068
+ Completed 200 OK in 18ms (Views: 13.4ms)
4069
+
4070
+
4071
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:28:00 +0300
4072
+
4073
+
4074
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:28:00 +0300
4075
+
4076
+
4077
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4078
+ Processing by Tail::LogsController#grep as */*
4079
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4080
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.8ms)
4081
+ Completed 200 OK in 45ms (Views: 36.3ms)
4082
+
4083
+
4084
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4085
+
4086
+
4087
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4088
+
4089
+
4090
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4091
+ Processing by Tail::LogsController#grep as */*
4092
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4093
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.1ms)
4094
+ Completed 200 OK in 19ms (Views: 13.1ms)
4095
+
4096
+
4097
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4098
+
4099
+
4100
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4101
+
4102
+
4103
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4104
+ Processing by Tail::LogsController#grep as */*
4105
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4106
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (6.6ms)
4107
+ Completed 200 OK in 26ms (Views: 20.5ms)
4108
+
4109
+
4110
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4111
+
4112
+
4113
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4114
+
4115
+
4116
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4117
+ Processing by Tail::LogsController#grep as */*
4118
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4119
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.2ms)
4120
+ Completed 200 OK in 18ms (Views: 12.9ms)
4121
+
4122
+
4123
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4124
+
4125
+
4126
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:56 +0300
4127
+
4128
+
4129
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4130
+ Processing by Tail::LogsController#grep as */*
4131
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4132
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.6ms)
4133
+ Completed 200 OK in 22ms (Views: 16.6ms)
4134
+
4135
+
4136
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4137
+
4138
+
4139
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4140
+
4141
+
4142
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4143
+ Processing by Tail::LogsController#grep as */*
4144
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4145
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.6ms)
4146
+ Completed 200 OK in 21ms (Views: 15.4ms)
4147
+
4148
+
4149
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4150
+
4151
+
4152
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4153
+
4154
+
4155
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4156
+ Processing by Tail::LogsController#grep as */*
4157
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4158
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.4ms)
4159
+ Completed 200 OK in 23ms (Views: 17.1ms)
4160
+
4161
+
4162
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4163
+
4164
+
4165
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4166
+
4167
+
4168
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4169
+ Processing by Tail::LogsController#grep as */*
4170
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4171
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.9ms)
4172
+ Completed 200 OK in 22ms (Views: 17.2ms)
4173
+
4174
+
4175
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4176
+
4177
+
4178
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:58 +0300
4179
+
4180
+
4181
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:47:59 +0300
4182
+ Processing by Tail::LogsController#grep as */*
4183
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4184
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.2ms)
4185
+ Completed 200 OK in 20ms (Views: 15.4ms)
4186
+
4187
+
4188
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:59 +0300
4189
+
4190
+
4191
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:47:59 +0300
4192
+
4193
+
4194
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:16 +0300
4195
+ Processing by Tail::LogsController#grep as */*
4196
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4197
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.1ms)
4198
+ Completed 200 OK in 24ms (Views: 18.1ms)
4199
+
4200
+
4201
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:16 +0300
4202
+
4203
+
4204
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:16 +0300
4205
+
4206
+
4207
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:16 +0300
4208
+ Processing by Tail::LogsController#grep as */*
4209
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4210
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.3ms)
4211
+ Completed 200 OK in 21ms (Views: 15.3ms)
4212
+
4213
+
4214
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4215
+
4216
+
4217
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4218
+
4219
+
4220
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4221
+ Processing by Tail::LogsController#grep as */*
4222
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4223
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.1ms)
4224
+ Completed 200 OK in 18ms (Views: 13.0ms)
4225
+
4226
+
4227
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4228
+
4229
+
4230
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4231
+
4232
+
4233
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4234
+ Processing by Tail::LogsController#grep as */*
4235
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4236
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.9ms)
4237
+ Completed 200 OK in 21ms (Views: 16.8ms)
4238
+
4239
+
4240
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4241
+
4242
+
4243
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4244
+
4245
+
4246
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4247
+ Processing by Tail::LogsController#grep as */*
4248
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4249
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.8ms)
4250
+ Completed 200 OK in 22ms (Views: 16.5ms)
4251
+
4252
+
4253
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4254
+
4255
+
4256
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4257
+
4258
+
4259
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4260
+ Processing by Tail::LogsController#grep as */*
4261
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4262
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.7ms)
4263
+ Completed 200 OK in 22ms (Views: 15.8ms)
4264
+
4265
+
4266
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4267
+
4268
+
4269
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:17 +0300
4270
+
4271
+
4272
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4273
+ Processing by Tail::LogsController#grep as */*
4274
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4275
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (5.0ms)
4276
+ Completed 200 OK in 22ms (Views: 17.8ms)
4277
+
4278
+
4279
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4280
+
4281
+
4282
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4283
+
4284
+
4285
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4286
+ Processing by Tail::LogsController#grep as */*
4287
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4288
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.8ms)
4289
+ Completed 200 OK in 21ms (Views: 14.7ms)
4290
+
4291
+
4292
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4293
+
4294
+
4295
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4296
+
4297
+
4298
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4299
+ Processing by Tail::LogsController#grep as */*
4300
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4301
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.8ms)
4302
+ Completed 200 OK in 20ms (Views: 15.2ms)
4303
+
4304
+
4305
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4306
+
4307
+
4308
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4309
+
4310
+
4311
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4312
+ Processing by Tail::LogsController#grep as */*
4313
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4314
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.4ms)
4315
+ Completed 200 OK in 23ms (Views: 17.9ms)
4316
+
4317
+
4318
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4319
+
4320
+
4321
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4322
+
4323
+
4324
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4325
+ Processing by Tail::LogsController#grep as */*
4326
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4327
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.3ms)
4328
+ Completed 200 OK in 17ms (Views: 12.0ms)
4329
+
4330
+
4331
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4332
+
4333
+
4334
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4335
+
4336
+
4337
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4338
+ Processing by Tail::LogsController#grep as */*
4339
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4340
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.5ms)
4341
+ Completed 200 OK in 18ms (Views: 12.2ms)
4342
+
4343
+
4344
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4345
+
4346
+
4347
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4348
+
4349
+
4350
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4351
+ Processing by Tail::LogsController#grep as */*
4352
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4353
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (2.9ms)
4354
+ Completed 200 OK in 18ms (Views: 13.3ms)
4355
+
4356
+
4357
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4358
+
4359
+
4360
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:19 +0300
4361
+
4362
+
4363
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:20 +0300
4364
+ Processing by Tail::LogsController#grep as */*
4365
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4366
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (4.6ms)
4367
+ Completed 200 OK in 27ms (Views: 21.8ms)
4368
+
4369
+
4370
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:20 +0300
4371
+
4372
+
4373
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:20 +0300
4374
+
4375
+
4376
+ Started GET "/tail/grep?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:48:22 +0300
4377
+ Processing by Tail::LogsController#grep as */*
4378
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4379
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb within layouts/tail/application (3.0ms)
4380
+ Completed 200 OK in 22ms (Views: 16.7ms)
4381
+
4382
+
4383
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:22 +0300
4384
+
4385
+
4386
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:48:23 +0300
4387
+
4388
+
4389
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4390
+ Processing by Tail::LogsController#index as HTML
4391
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4392
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (3.4ms)
4393
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (0.9ms)
4394
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (8.4ms)
4395
+ Completed 200 OK in 35ms (Views: 28.1ms)
4396
+
4397
+
4398
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4399
+
4400
+
4401
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4402
+
4403
+
4404
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4405
+
4406
+
4407
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4408
+
4409
+
4410
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:49:28 +0300
4411
+
4412
+
4413
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:49:29 +0300
4414
+
4415
+
4416
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:49:29 +0300
4417
+
4418
+
4419
+ Started GET "/tail/?file_name=development.log&n=100" for 127.0.0.1 at 2014-03-24 16:56:03 +0300
4420
+ Processing by Tail::LogsController#index as HTML
4421
+ Parameters: {"file_name"=>"development.log", "n"=>"100"}
4422
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_main.html.erb (2.5ms)
4423
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/_icons.html.erb (1.1ms)
4424
+ Rendered /Users/Mikhail/projects/tail/app/views/tail/logs/index.html.erb within layouts/tail/application (9.0ms)
4425
+ Completed 200 OK in 39ms (Views: 32.5ms)
4426
+
4427
+
4428
+ Started GET "/assets/tail/application.css?body=1" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4429
+
4430
+
4431
+ Started GET "/assets/tail/logs.css?body=1" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4432
+
4433
+
4434
+ Started GET "/assets/tail/logs.js?body=1" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4435
+
4436
+
4437
+ Started GET "/assets/tail/application.js?body=1" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4438
+
4439
+
4440
+ Started GET "/assets/tail/refresh.png" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4441
+
4442
+
4443
+ Started GET "/assets/tail/cleaning.png" for 127.0.0.1 at 2014-03-24 16:56:04 +0300
4444
+
4445
+
4446
+ Started GET "/assets/tail/up_arrow.png" for 127.0.0.1 at 2014-03-24 16:56:04 +0300