extface 0.5.6 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 620cf1cae6f685a39efb3726ba1474369c1aa605
4
- data.tar.gz: aedfc5fa2883237c560248fb3a36131e7673e5c5
3
+ metadata.gz: fc29ec65cacca65fcfa861bef03b1947a067bbfe
4
+ data.tar.gz: 786a71ba8ce3727d1fdce4f7807c0f7ecb7e5d21
5
5
  SHA512:
6
- metadata.gz: 7c40d300bc4137822f75ab451e727a98f8b191f872c6ba0b2c3f93198b9d4e1860ca54e39b90749651cf32f15a186dc141a5743cfee51d22314936dba3b45a1c
7
- data.tar.gz: 24177763e1a4e467be1bb10577103036625d29b2034dad8bc36a164491c277a7c1ef900768784647116f6822e6fd3ee7de65287844bc0d2fe549e3bb03ea82a7
6
+ metadata.gz: 8b69c16765372fff5f7d48327376bd6827a3faf445b2122fda3d3eea9d64121462f1b6a212eded4815b582e71f70a59a9d5bccb71ecfcbc813189d47f023b234
7
+ data.tar.gz: e5acf21532c7cf12470523c80a4615df1e17874d59e4eaedb42b4bf6d1967b8b0f81d4a785626173dfe8b9953f9b05e43e9a2ac53fa70455230856aae5ff50a9
@@ -13,6 +13,8 @@ module Extface
13
13
  FISCAL = false #cash registers, fiscal printers
14
14
  REPORT = false #only transmit data that must be parsed by handler, CDR, report devices
15
15
 
16
+ CHAR_COLUMNS = 30
17
+
16
18
  #alias_method :print, :push
17
19
  def print(text)
18
20
  if device.encoding.present?
@@ -57,6 +59,32 @@ module Extface
57
59
  return true #just pass
58
60
  end
59
61
 
62
+ def print_edges_row(text1, text2)
63
+ print "#{text1} #{text2.rjust(CHAR_COLUMNS - text1.length - 1)}\r\n"
64
+ end
65
+
66
+ def print_text_price_row(text, price)
67
+ rtext = ("%.2f" % price.to_f)
68
+ lsize = CHAR_COLUMNS - rtext.length - 1
69
+ print "#{text.truncate(lsize).ljust(lsize)} #{rtext}\r\n"
70
+ end
71
+
72
+ def print_fill_row(pattern)
73
+ print "\r\n".rjust(CHAR_COLUMNS+2, pattern)
74
+ end
75
+
76
+ def print_rjust_row(text, padstr=' ')
77
+ print "#{text.truncate(CHAR_COLUMNS).rjust(CHAR_COLUMNS, padstr)}\r\n"
78
+ end
79
+
80
+ def print_ljust_row(text, padstr = ' ', margin=0)
81
+ print "#{text.truncate(CHAR_COLUMNS - margin).ljust(CHAR_COLUMNS - margin)}\r\n"
82
+ end
83
+
84
+ def print_center_row(text, padstr = ' ')
85
+ print "#{text.truncate(CHAR_COLUMNS).center(CHAR_COLUMNS, padstr)}\r\n"
86
+ end
87
+
60
88
  def printize(bill, detailed = false, payments = true)
61
89
  if detailed
62
90
  device.session("Fiscal Doc") do |s|
@@ -0,0 +1,40 @@
1
+ module Extface
2
+ class Driver::Posiflex::Aura80 < Extface::Driver::Base::Print
3
+ NAME = 'Posiflex (Aura 80mm)'.freeze
4
+
5
+ DEVELOPMENT = true #driver is not ready for production (not passing all tests or has major bugs)
6
+
7
+ CHAR_COLUMNS = 49
8
+
9
+ include Extface::Driver::Posiflex::AuraCommands
10
+
11
+ def handle(buffer)
12
+ #expecting only 1 status byte, move it to receive_buffer
13
+ rpush buffer
14
+ return buffer.length # return number of bytes processed
15
+ end
16
+
17
+ def autocut(partial = true)
18
+ push "\r\n\r\n\r\n"
19
+ push Printer::PAPER_CUT
20
+ end
21
+
22
+ def check_status
23
+ flush
24
+ push Info::GET_PAPER_STATUS
25
+ if status = pull(3) #wait 3 sec for data
26
+ human_status_errors(status)
27
+ return errors.empty?
28
+ else
29
+ errors.add :base, "No data received from device"
30
+ return false
31
+ end
32
+ end
33
+
34
+ private
35
+
36
+ def human_status_errors(status_byte)
37
+ errors.add :base, "Paper out" unless (status_byte.ord & 0x0C).zero?
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,15 @@
1
+ module Extface
2
+ module Driver::Posiflex::AuraCommands
3
+
4
+ module Info
5
+ GET_PAPER_STATUS = "\x1D\x72\x49".b
6
+ end
7
+
8
+ module Printer
9
+ PAPER_CUT = "\x1B\x69".b
10
+ end
11
+
12
+ end
13
+ end
14
+
15
+ # https://sourceforge.net/p/chromispos/discussion/help/thread/c004783b/2fc4/attachment/Aura%20Printer%20Command%20Manual.pdf
@@ -0,0 +1,9 @@
1
+ module Extface
2
+ class Driver::Unknown::Pos58 < Extface::Driver::Base::Print
3
+ NAME = 'POS58'.freeze
4
+
5
+ DEVELOPMENT = true #driver is not ready for production (not passing all tests or has major bugs)
6
+
7
+ CHAR_COLUMNS = 32
8
+ end
9
+ end
@@ -0,0 +1,2 @@
1
+ <%= button_to 'Print Test Page', test_page_device_path(@device), remote: true, name: :test_page, value: true, class: 'btn btn-warning' %>
2
+ <%= button_to 'Paper Cut', test_page_device_path(@device), remote: true, name: :paper_cut, value: true, class: 'btn btn-warning' %>
@@ -0,0 +1 @@
1
+ <%= __FILE__.gsub(Rails.root.to_s, "") %>
@@ -1,3 +1,3 @@
1
1
  module Extface
2
- VERSION = "0.5.6"
2
+ VERSION = "0.5.7"
3
3
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140303123022) do
14
+ ActiveRecord::Schema.define(version: 20160828052036) do
15
15
 
16
16
  create_table "extface_devices", force: true do |t|
17
17
  t.string "uuid"
@@ -21,6 +21,7 @@ ActiveRecord::Schema.define(version: 20140303123022) do
21
21
  t.integer "driver_id"
22
22
  t.datetime "created_at"
23
23
  t.datetime "updated_at"
24
+ t.string "encoding"
24
25
  end
25
26
 
26
27
  create_table "extface_drivers", force: true do |t|
@@ -39,6 +40,7 @@ ActiveRecord::Schema.define(version: 20140303123022) do
39
40
  t.datetime "failed_at"
40
41
  t.datetime "completed_at"
41
42
  t.datetime "connected_at"
43
+ t.datetime "started_at"
42
44
  end
43
45
 
44
46
  add_index "extface_jobs", ["device_id"], name: "index_extface_jobs_on_device_id"
Binary file
@@ -0,0 +1,100 @@
1
+  (89.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.2ms) select sqlite_version(*)
3
+  (89.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateExtfaceDevices (20140215192111)
6
+  (0.1ms) begin transaction
7
+  (0.6ms) CREATE TABLE "extface_devices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uuid" varchar(255), "name" varchar(255), "extfaceable_id" integer, "extfaceable_type" varchar(255), "driveable_id" integer, "driveable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+  (0.2ms) CREATE INDEX "index_extface_devices_on_driveable_id_and_driveable_type" ON "extface_devices" ("driveable_id", "driveable_type")
9
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140215192111"]]
10
+  (93.9ms) commit transaction
11
+ Migrating to CreateExtfaceSerialConfigs (20140216110608)
12
+  (0.2ms) begin transaction
13
+  (0.7ms) CREATE TABLE "extface_serial_configs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "s_configureable_id" integer, "s_configureable_type" varchar(255), "serial_boud_rate" integer, "serial_data_length" integer, "serial_parity_check" integer, "serial_stop_bits" integer, "serial_handshake" integer, "created_at" datetime, "updated_at" datetime) 
14
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140216110608"]]
15
+  (84.6ms) commit transaction
16
+ Migrating to CreateExtfaceJobs (20140219091811)
17
+  (0.2ms) begin transaction
18
+  (0.4ms) CREATE TABLE "extface_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "device_id" integer, "created_at" datetime, "updated_at" datetime) 
19
+  (0.2ms) CREATE INDEX "index_extface_jobs_on_device_id" ON "extface_jobs" ("device_id")
20
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140219091811"]]
21
+  (86.2ms) commit transaction
22
+ Migrating to AddJobInfoToExtfaceJobs (20140219175006)
23
+  (0.2ms) begin transaction
24
+  (0.3ms) ALTER TABLE "extface_jobs" ADD "description" varchar(255)
25
+  (0.2ms) ALTER TABLE "extface_jobs" ADD "error" varchar(255)
26
+  (0.2ms) ALTER TABLE "extface_jobs" ADD "failed_at" datetime
27
+  (0.2ms) ALTER TABLE "extface_jobs" ADD "completed_at" datetime
28
+  (0.1ms) ALTER TABLE "extface_jobs" ADD "connected_at" datetime
29
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140219175006"]]
30
+  (69.9ms) commit transaction
31
+ Migrating to CreateShops (20140221203517)
32
+  (0.2ms) begin transaction
33
+  (0.6ms) CREATE TABLE "shops" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
34
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140221203517"]]
35
+  (103.8ms) commit transaction
36
+ Migrating to CreateExtfaceDrivers (20140303112124)
37
+  (0.2ms) begin transaction
38
+  (0.5ms) CREATE TABLE "extface_drivers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "settings" text, "created_at" datetime, "updated_at" datetime)
39
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140303112124"]]
40
+  (109.8ms) commit transaction
41
+ Migrating to ChangeDriverPolymorphicToBelongsToExtfaceDevices (20140303122506)
42
+  (0.3ms) begin transaction
43
+  (0.5ms) SELECT sql
44
+ FROM sqlite_master
45
+ WHERE name='index_extface_devices_on_driveable_id_and_driveable_type' AND type='index'
46
+ UNION ALL
47
+ SELECT sql
48
+ FROM sqlite_temp_master
49
+ WHERE name='index_extface_devices_on_driveable_id_and_driveable_type' AND type='index'
50
+
51
+  (0.5ms) DROP INDEX "index_extface_devices_on_driveable_id_and_driveable_type"
52
+  (1.0ms) CREATE TEMPORARY TABLE "aextface_devices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uuid" varchar(255), "name" varchar(255), "extfaceable_id" integer, "extfaceable_type" varchar(255), "driveable_id" integer, "driveable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
53
+  (0.2ms) SELECT * FROM "extface_devices"
54
+  (0.6ms) DROP TABLE "extface_devices"
55
+  (0.7ms) CREATE TABLE "extface_devices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uuid" varchar(255), "name" varchar(255), "extfaceable_id" integer, "extfaceable_type" varchar(255), "driveable_id" integer, "created_at" datetime, "updated_at" datetime) 
56
+  (0.2ms) SELECT * FROM "aextface_devices"
57
+  (0.5ms) DROP TABLE "aextface_devices"
58
+  (0.2ms) CREATE TEMPORARY TABLE "aextface_devices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uuid" varchar(255), "name" varchar(255), "extfaceable_id" integer, "extfaceable_type" varchar(255), "driver_id" integer, "created_at" datetime, "updated_at" datetime)
59
+  (0.1ms) SELECT * FROM "extface_devices"
60
+  (0.2ms) DROP TABLE "extface_devices"
61
+  (0.2ms) CREATE TABLE "extface_devices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uuid" varchar(255), "name" varchar(255), "extfaceable_id" integer, "extfaceable_type" varchar(255), "driver_id" integer, "created_at" datetime, "updated_at" datetime) 
62
+  (0.1ms) SELECT * FROM "aextface_devices"
63
+  (0.2ms) DROP TABLE "aextface_devices"
64
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140303122506"]]
65
+  (83.2ms) commit transaction
66
+ Migrating to ChangePolymorphicToHasOneToExtfaceSerialConfigs (20140303123022)
67
+  (0.1ms) begin transaction
68
+  (0.3ms) CREATE TEMPORARY TABLE "aextface_serial_configs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "s_configureable_id" integer, "s_configureable_type" varchar(255), "serial_boud_rate" integer, "serial_data_length" integer, "serial_parity_check" integer, "serial_stop_bits" integer, "serial_handshake" integer, "created_at" datetime, "updated_at" datetime) 
69
+  (0.1ms) SELECT * FROM "extface_serial_configs"
70
+  (0.3ms) DROP TABLE "extface_serial_configs"
71
+  (0.3ms) CREATE TABLE "extface_serial_configs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "s_configureable_id" integer, "serial_boud_rate" integer, "serial_data_length" integer, "serial_parity_check" integer, "serial_stop_bits" integer, "serial_handshake" integer, "created_at" datetime, "updated_at" datetime)
72
+  (0.1ms) SELECT * FROM "aextface_serial_configs"
73
+  (0.1ms) DROP TABLE "aextface_serial_configs"
74
+  (0.2ms) CREATE TEMPORARY TABLE "aextface_serial_configs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "driver_id" integer, "serial_boud_rate" integer, "serial_data_length" integer, "serial_parity_check" integer, "serial_stop_bits" integer, "serial_handshake" integer, "created_at" datetime, "updated_at" datetime) 
75
+  (0.1ms) SELECT * FROM "extface_serial_configs"
76
+  (0.3ms) DROP TABLE "extface_serial_configs"
77
+  (0.2ms) CREATE TABLE "extface_serial_configs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "driver_id" integer, "serial_boud_rate" integer, "serial_data_length" integer, "serial_parity_check" integer, "serial_stop_bits" integer, "serial_handshake" integer, "created_at" datetime, "updated_at" datetime)
78
+  (0.1ms) SELECT * FROM "aextface_serial_configs"
79
+  (0.1ms) DROP TABLE "aextface_serial_configs"
80
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140303123022"]]
81
+  (77.5ms) commit transaction
82
+ Migrating to AddStartedAtToExtfaceJob (20160103154233)
83
+  (0.1ms) begin transaction
84
+  (0.5ms) ALTER TABLE "extface_jobs" ADD "started_at" datetime
85
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160103154233"]]
86
+  (59.2ms) commit transaction
87
+ Migrating to AddEncodingToExtfaceDevice (20160828052036)
88
+  (0.1ms) begin transaction
89
+  (0.5ms) ALTER TABLE "extface_devices" ADD "encoding" varchar(255)
90
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160828052036"]]
91
+  (56.3ms) commit transaction
92
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
93
+  (0.2ms) SELECT sql
94
+ FROM sqlite_master
95
+ WHERE name='index_extface_jobs_on_device_id' AND type='index'
96
+ UNION ALL
97
+ SELECT sql
98
+ FROM sqlite_temp_master
99
+ WHERE name='index_extface_jobs_on_device_id' AND type='index'
100
+
@@ -0,0 +1,61 @@
1
+ # Logfile created on 2016-08-30 20:10:05 -0400 by logger.rb/44203
2
+ D, [2016-08-30T20:10:05.445384 #10681] DEBUG -- : --> 1D 72 49
3
+ D, [2016-08-30T20:10:43.555111 #10749] DEBUG -- : --> 1D 72 49
4
+ D, [2016-08-30T20:12:21.189809 #10888] DEBUG -- : --> 1D 72 49
5
+ D, [2016-08-30T20:12:47.637313 #10956] DEBUG -- : --> 1D 72 49
6
+ D, [2016-08-30T20:13:03.193540 #11002] DEBUG -- : --> 1D 72 49
7
+ D, [2016-08-30T20:13:04.239676 #11002] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
8
+ D, [2016-08-30T20:13:14.243196 #11002] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
9
+ D, [2016-08-30T20:13:44.485910 #11097] DEBUG -- : --> 1D 72 49
10
+ D, [2016-08-30T20:13:47.566834 #11097] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
11
+ D, [2016-08-30T20:13:57.568682 #11097] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
12
+ D, [2016-08-30T20:14:16.703247 #11185] DEBUG -- : --> 1D 72 49
13
+ D, [2016-08-30T20:15:06.313416 #11278] DEBUG -- : --> 1D 72 49
14
+ D, [2016-08-30T20:17:07.375733 #11444] DEBUG -- : --> 1D 72 49
15
+ D, [2016-08-30T20:17:24.647971 #11493] DEBUG -- : --> 1D 72 49
16
+ D, [2016-08-30T20:18:37.464329 #11616] DEBUG -- : --> 1D 72 49
17
+ D, [2016-08-30T20:19:20.679790 #11685] DEBUG -- : --> 1D 72 49
18
+ D, [2016-08-30T20:21:02.922394 #11869] DEBUG -- : --> 1D 72 49
19
+ D, [2016-08-30T20:21:32.495893 #11940] DEBUG -- : --> 1D 72 49
20
+ D, [2016-08-30T20:22:00.172068 #11996] DEBUG -- : --> 1D 72 49
21
+ D, [2016-08-30T20:22:30.752293 #12059] DEBUG -- : --> 1D 72 49
22
+ D, [2016-08-30T20:23:11.439869 #12131] DEBUG -- : --> 1D 72 49
23
+ D, [2016-08-30T20:25:12.466082 #12347] DEBUG -- : --> 1D 72 49
24
+ D, [2016-08-30T20:25:13.544813 #12347] DEBUG -- : --> 1D 72 49
25
+ D, [2016-08-30T20:25:36.772943 #12409] DEBUG -- : --> 1D 72 49
26
+ D, [2016-08-30T20:25:37.826787 #12409] DEBUG -- : --> 1D 72 49
27
+ D, [2016-08-30T20:26:08.174733 #12492] DEBUG -- : --> 1D 72 49
28
+ D, [2016-08-30T20:26:09.309872 #12492] DEBUG -- : --> 1D 72 49
29
+ D, [2016-08-30T20:26:25.326032 #12549] DEBUG -- : --> 1D 72 49
30
+ D, [2016-08-30T20:26:26.422158 #12549] DEBUG -- : --> 1D 72 49
31
+ D, [2016-08-30T20:30:26.748199 #12939] DEBUG -- : --> 1D 72 49
32
+ D, [2016-08-30T20:30:27.768289 #12939] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
33
+ D, [2016-08-30T20:30:37.770416 #12939] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
34
+ D, [2016-08-30T20:30:47.797936 #12939] DEBUG -- : --> 1D 72 49
35
+ D, [2016-08-30T20:30:48.838943 #12939] DEBUG -- : --> 1D 72 49
36
+ D, [2016-08-30T20:31:48.872915 #13113] DEBUG -- : --> 1D 72 49
37
+ D, [2016-08-30T20:31:49.905292 #13113] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
38
+ D, [2016-08-30T20:31:49.912748 #13113] DEBUG -- : --> 1B 69
39
+ D, [2016-08-30T20:31:51.017460 #13113] DEBUG -- : --> 1D 72 49
40
+ D, [2016-08-30T20:31:52.122170 #13113] DEBUG -- : --> 1D 72 49
41
+ D, [2016-08-30T20:32:18.631939 #13201] DEBUG -- : --> 1D 72 49
42
+ D, [2016-08-30T20:32:19.685756 #13201] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
43
+ D, [2016-08-30T20:32:19.691691 #13201] DEBUG -- : --> 1B 69
44
+ D, [2016-08-30T20:32:20.805019 #13201] DEBUG -- : --> 1D 72 49
45
+ D, [2016-08-30T20:32:21.901567 #13201] DEBUG -- : --> 1D 72 49
46
+ D, [2016-08-30T20:32:58.169297 #13288] DEBUG -- : --> 1D 72 49
47
+ D, [2016-08-30T20:32:59.194279 #13288] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
48
+ D, [2016-08-30T20:32:59.200145 #13288] DEBUG -- : --> 1B 69
49
+ D, [2016-08-30T20:33:00.306228 #13288] DEBUG -- : --> 1D 72 49
50
+ D, [2016-08-30T20:33:01.409001 #13288] DEBUG -- : --> 1D 72 49
51
+ D, [2016-08-30T20:33:54.473995 #13365] DEBUG -- : --> 1D 72 49
52
+ D, [2016-08-30T20:33:55.558490 #13365] DEBUG -- : --> 0D 0A 0D 0A 0D 0A
53
+ D, [2016-08-30T20:33:55.564694 #13365] DEBUG -- : --> 1B 69
54
+ D, [2016-08-30T20:33:57.764655 #13365] DEBUG -- : --> 1D 72 49
55
+ D, [2016-08-30T20:34:07.768330 #13365] DEBUG -- : --> 1D 72 49
56
+ D, [2016-08-30T20:34:59.749887 #13488] DEBUG -- : --> 1D 72 49
57
+ D, [2016-08-30T20:35:09.752793 #13488] DEBUG -- : --> 1D 72 49
58
+ D, [2016-08-30T20:35:52.810287 #13603] DEBUG -- : --> 1D 72 49
59
+ D, [2016-08-30T20:36:02.812555 #13603] DEBUG -- : --> 1D 72 49
60
+ D, [2016-08-30T20:42:42.680478 #14028] DEBUG -- : --> 1D 72 49
61
+ D, [2016-08-30T20:42:52.680945 #14028] DEBUG -- : --> 1D 72 49
@@ -1,12 +1,9 @@
1
- # Logfile created on 2015-12-19 10:13:09 -0500 by logger.rb/44203
2
- D, [2015-12-19T10:13:09.841582 #15365] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
3
- D, [2015-12-19T10:20:54.495691 #15557] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
4
- D, [2015-12-19T12:39:00.632595 #21144] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
5
- D, [2015-12-19T12:43:02.043461 #21144] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
6
- D, [2015-12-19T12:43:12.044925 #21144] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
7
- D, [2015-12-19T12:45:25.794472 #21389] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
8
- D, [2015-12-19T12:45:26.796379 #21389] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
9
- D, [2015-12-19T12:47:18.967939 #21469] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
10
- D, [2015-12-19T12:47:19.970944 #21469] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
11
- D, [2015-12-19T12:56:06.468061 #21740] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
12
- D, [2015-12-19T12:56:07.470141 #21740] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
1
+ # Logfile created on 2016-08-30 19:50:34 -0400 by logger.rb/44203
2
+ D, [2016-08-30T19:50:34.455668 #8918] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
3
+ D, [2016-08-30T19:50:35.557665 #8918] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
4
+ D, [2016-08-30T20:34:55.494196 #13488] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
5
+ D, [2016-08-30T20:34:56.540908 #13488] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
6
+ D, [2016-08-30T20:35:39.450900 #13603] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
7
+ D, [2016-08-30T20:35:40.474229 #13603] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
8
+ D, [2016-08-30T20:42:38.304504 #14028] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
9
+ D, [2016-08-30T20:42:39.370576 #14028] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
@@ -0,0 +1,12 @@
1
+ # Logfile created on 2015-12-19 10:13:09 -0500 by logger.rb/44203
2
+ D, [2015-12-19T10:13:09.841582 #15365] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
3
+ D, [2015-12-19T10:20:54.495691 #15557] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
4
+ D, [2015-12-19T12:39:00.632595 #21144] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
5
+ D, [2015-12-19T12:43:02.043461 #21144] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
6
+ D, [2015-12-19T12:43:12.044925 #21144] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
7
+ D, [2015-12-19T12:45:25.794472 #21389] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
8
+ D, [2015-12-19T12:45:26.796379 #21389] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
9
+ D, [2015-12-19T12:47:18.967939 #21469] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
10
+ D, [2015-12-19T12:47:19.970944 #21469] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
11
+ D, [2015-12-19T12:56:06.468061 #21740] DEBUG -- : --> 01 25 20 4A 58 05 30 30 3E 3C 03
12
+ D, [2015-12-19T12:56:07.470141 #21740] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
@@ -1,181 +1,36 @@
1
- # Logfile created on 2015-12-20 10:02:45 -0500 by logger.rb/44203
2
- D, [2015-12-20T10:02:45.346209 #2009] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
3
- D, [2015-12-20T10:02:46.351845 #2009] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
4
- D, [2015-12-20T10:03:56.218654 #2062] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
5
- D, [2015-12-20T10:03:57.226445 #2062] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
6
- D, [2015-12-20T10:06:43.216370 #2172] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
7
- D, [2015-12-20T10:06:44.224208 #2172] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
8
- D, [2015-12-20T10:06:45.366821 #2172] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
9
- D, [2015-12-20T10:06:46.368808 #2172] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
10
- D, [2015-12-20T11:06:42.571826 #3585] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
11
- D, [2015-12-20T11:06:43.577523 #3585] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
12
- D, [2015-12-20T11:06:44.610949 #3585] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
13
- D, [2015-12-20T11:06:45.616081 #3585] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
14
- D, [2015-12-20T11:11:24.217859 #3725] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
15
- D, [2015-12-20T11:11:34.219387 #3725] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
16
- D, [2015-12-20T11:17:42.643301 #3925] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
17
- D, [2015-12-20T11:23:41.576402 #4091] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
18
- D, [2015-12-20T11:26:10.839758 #4145] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
19
- D, [2015-12-20T11:26:59.838555 #4206] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
20
- D, [2015-12-20T11:27:41.588877 #4254] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
21
- D, [2015-12-20T11:52:15.756931 #4349] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
22
- D, [2015-12-20T11:52:53.981398 #4383] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
23
- D, [2015-12-20T11:52:54.988609 #4383] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
24
- D, [2015-12-20T11:54:03.305705 #4433] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
25
- D, [2015-12-20T11:54:04.308432 #4433] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
26
- D, [2015-12-20T11:55:55.823746 #4530] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
27
- D, [2015-12-20T11:57:01.967184 #4585] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
28
- D, [2015-12-20T11:58:07.659441 #4642] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
29
- D, [2015-12-20T11:59:57.831194 #4722] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
30
- D, [2015-12-20T12:00:33.057464 #4774] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
31
- D, [2015-12-20T12:01:05.787435 #4991] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
32
- D, [2015-12-20T12:01:22.102875 #4991] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
33
- D, [2015-12-20T12:01:32.103075 #4991] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
34
- D, [2015-12-20T12:02:18.223427 #5131] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
35
- D, [2015-12-20T12:04:26.228568 #5270] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
36
- D, [2015-12-20T12:51:51.897406 #6034] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
37
- D, [2015-12-20T12:52:37.030444 #6080] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
38
- D, [2015-12-20T12:53:02.984539 #6131] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
39
- D, [2015-12-20T12:57:07.842168 #6284] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
40
- D, [2015-12-20T12:57:08.845982 #6284] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
41
- D, [2015-12-20T12:57:18.849575 #6284] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
42
- D, [2015-12-20T13:16:52.728452 #6693] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
43
- D, [2015-12-20T13:16:53.723852 #6693] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
44
- D, [2015-12-20T13:17:10.041031 #6693] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
45
- D, [2015-12-20T13:17:20.042050 #6693] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
46
- D, [2015-12-20T13:17:45.925589 #6807] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
47
- D, [2015-12-20T13:17:46.933150 #6807] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
48
- D, [2015-12-20T13:18:04.084693 #6807] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
49
- D, [2015-12-20T13:18:14.084192 #6807] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
50
- D, [2015-12-20T13:21:55.274303 #7074] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
51
- D, [2015-12-20T13:21:56.282867 #7074] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
52
- D, [2015-12-20T13:22:41.386744 #7111] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
53
- D, [2015-12-20T13:22:42.396737 #7111] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
54
- D, [2015-12-20T13:28:27.244477 #7215] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
55
- D, [2015-12-20T13:28:27.253755 #7215] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
56
- D, [2015-12-20T13:28:37.257269 #7215] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
57
- D, [2015-12-20T13:29:36.270026 #7296] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
58
- D, [2015-12-20T13:29:36.279916 #7296] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
59
- D, [2015-12-20T13:29:46.283276 #7296] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
60
- D, [2015-12-20T13:30:37.435257 #7362] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
61
- D, [2015-12-20T13:30:37.445406 #7362] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
62
- D, [2015-12-20T13:30:47.448992 #7362] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
63
- D, [2015-12-20T13:31:02.539493 #7423] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
64
- D, [2015-12-20T13:31:03.542087 #7423] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
65
- D, [2015-12-20T13:35:45.403328 #7471] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
66
- D, [2015-12-20T13:35:46.411689 #7471] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
67
- D, [2015-12-20T13:36:57.906047 #7515] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
68
- D, [2015-12-20T13:36:57.916681 #7515] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
69
- D, [2015-12-20T13:37:07.920333 #7515] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
70
- D, [2015-12-20T13:41:07.788533 #7603] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
71
- D, [2015-12-20T13:41:09.043683 #7603] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
72
- D, [2015-12-20T13:41:37.514754 #7645] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
73
- D, [2015-12-20T13:41:39.026105 #7645] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
74
- D, [2015-12-20T13:43:06.197132 #7703] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
75
- D, [2015-12-20T13:43:08.083291 #7703] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
76
- D, [2015-12-20T13:43:38.540215 #7751] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
77
- D, [2015-12-20T13:43:40.074469 #7751] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
78
- D, [2015-12-20T13:44:20.993090 #7818] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
79
- D, [2015-12-20T13:44:22.084318 #7818] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
80
- D, [2015-12-20T13:45:00.845536 #7872] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
81
- D, [2015-12-20T13:45:02.102573 #7872] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
82
- D, [2015-12-20T13:46:13.888576 #7959] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
83
- D, [2015-12-20T13:46:15.109611 #7959] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
84
- D, [2015-12-20T13:49:17.849991 #8106] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
85
- D, [2015-12-20T13:49:19.044448 #8106] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
86
- D, [2015-12-20T13:50:16.554482 #8161] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
87
- D, [2015-12-20T13:50:18.111947 #8161] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
88
- D, [2015-12-20T13:51:00.307124 #8227] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
89
- D, [2015-12-20T13:51:02.035523 #8227] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
90
- D, [2015-12-20T13:51:52.212991 #8291] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
91
- D, [2015-12-20T13:51:54.085404 #8291] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
92
- D, [2015-12-20T13:53:04.358508 #8338] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
93
- D, [2015-12-20T13:53:14.361822 #8338] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
94
- D, [2015-12-20T13:54:51.693260 #8526] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
95
- D, [2015-12-20T13:54:53.096514 #8526] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
96
- D, [2015-12-20T13:57:01.953639 #8617] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
97
- D, [2015-12-20T13:57:03.071252 #8617] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
98
- D, [2015-12-20T14:00:43.461042 #8694] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
99
- D, [2015-12-20T14:00:45.026015 #8694] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
100
- D, [2015-12-20T14:01:38.015798 #8973] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
101
- D, [2015-12-20T14:01:39.082780 #8973] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
102
- D, [2015-12-20T14:02:26.083334 #9011] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
103
- D, [2015-12-20T14:02:28.021752 #9011] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
104
- D, [2015-12-20T14:02:55.117118 #9048] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
105
- D, [2015-12-20T14:02:57.099501 #9048] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
106
- D, [2015-12-20T14:03:56.179609 #9116] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
107
- D, [2015-12-20T14:03:58.080874 #9116] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
108
- D, [2015-12-20T14:05:00.099022 #9177] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
109
- D, [2015-12-20T14:05:02.067499 #9177] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
110
- D, [2015-12-20T14:06:09.318054 #9243] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
111
- D, [2015-12-20T14:06:11.064782 #9243] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
112
- D, [2015-12-20T14:06:27.920077 #9279] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
113
- D, [2015-12-20T14:06:29.112822 #9279] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
114
- D, [2015-12-20T14:06:31.012205 #9279] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
115
- D, [2015-12-20T14:15:48.475926 #9399] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
116
- D, [2015-12-20T14:15:50.089882 #9399] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
117
- D, [2015-12-20T14:16:15.812891 #9450] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
118
- D, [2015-12-20T14:16:17.065553 #9450] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
119
- D, [2015-12-20T14:16:19.072095 #9450] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
120
- D, [2015-12-20T14:16:53.560586 #9488] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
121
- D, [2015-12-20T14:16:55.084083 #9488] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
122
- D, [2015-12-20T14:17:30.840245 #9538] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
123
- D, [2015-12-20T14:18:23.036635 #9587] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
124
- D, [2015-12-20T14:18:25.041580 #9587] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
125
- D, [2015-12-20T14:21:51.087893 #9652] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
126
- D, [2015-12-20T14:21:53.070766 #9652] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
127
- D, [2015-12-20T14:23:30.976841 #9709] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
128
- D, [2015-12-20T14:23:33.058919 #9709] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
129
- D, [2015-12-20T14:24:18.261768 #9786] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
130
- D, [2015-12-20T14:24:20.088060 #9786] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
131
- D, [2015-12-20T14:24:40.050110 #9786] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
132
- D, [2015-12-20T14:24:42.041846 #9786] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
133
- D, [2015-12-20T14:24:44.084939 #9786] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
134
- D, [2015-12-20T14:24:46.054270 #9786] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
135
- D, [2015-12-20T14:26:02.106737 #9881] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
136
- D, [2015-12-20T14:26:04.086544 #9881] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
137
- D, [2015-12-20T14:26:14.089091 #9881] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
138
- D, [2015-12-20T14:26:31.934953 #9935] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
139
- D, [2015-12-20T14:26:33.067905 #9935] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
140
- D, [2015-12-20T14:27:00.627145 #10021] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
141
- D, [2015-12-20T14:33:29.748206 #10155] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
142
- D, [2015-12-20T14:33:31.081647 #10155] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
143
- D, [2015-12-20T14:33:59.448503 #10213] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
144
- D, [2015-12-20T14:34:01.057721 #10213] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
145
- D, [2015-12-20T14:34:49.315147 #10292] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
146
- D, [2015-12-20T14:34:51.106488 #10292] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
147
- D, [2015-12-20T14:35:29.519658 #10343] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
148
- D, [2015-12-20T14:35:31.111182 #10343] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
149
- D, [2015-12-20T14:35:33.015909 #10343] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
150
- D, [2015-12-20T14:35:56.202749 #10405] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
151
- D, [2015-12-20T14:35:58.081886 #10405] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
152
- D, [2015-12-20T14:36:00.088517 #10405] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
153
- D, [2015-12-20T14:36:20.831078 #10466] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
154
- D, [2015-12-20T14:36:22.046752 #10466] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
155
- D, [2015-12-20T14:36:24.052070 #10466] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
156
- D, [2015-12-20T14:36:45.574717 #10519] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
157
- D, [2015-12-20T14:36:47.015932 #10519] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
158
- D, [2015-12-20T14:36:49.018860 #10519] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
159
- D, [2015-12-20T14:37:00.246564 #10570] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
160
- D, [2015-12-20T14:37:02.054607 #10570] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
161
- D, [2015-12-20T14:37:04.059991 #10570] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
162
- D, [2015-12-20T14:37:35.977774 #10620] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
163
- D, [2015-12-20T14:37:37.045323 #10620] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
164
- D, [2015-12-20T14:37:39.052177 #10620] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
165
- D, [2015-12-20T14:37:53.548345 #10669] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
166
- D, [2015-12-20T14:37:55.093354 #10669] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
167
- D, [2015-12-20T14:37:57.098569 #10669] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
168
- D, [2015-12-20T14:41:10.340281 #10729] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
169
- D, [2015-12-20T14:41:31.171141 #10764] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
170
- D, [2015-12-20T14:43:00.901781 #10862] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
171
- D, [2015-12-20T14:43:02.095490 #10862] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
172
- D, [2015-12-20T14:43:04.102167 #10862] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
173
- D, [2015-12-20T14:43:59.370872 #10913] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
174
- D, [2015-12-20T14:44:17.520572 #10964] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
175
- D, [2015-12-20T14:44:19.110878 #10964] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
176
- D, [2015-12-20T14:44:21.017525 #10964] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
177
- D, [2015-12-20T14:44:50.926080 #11003] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
178
- D, [2015-12-20T14:44:52.098379 #11003] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
179
- D, [2015-12-20T14:45:30.718863 #11060] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
180
- D, [2015-12-20T14:45:32.109305 #11060] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
181
- D, [2015-12-20T14:45:34.015113 #11060] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
1
+ # Logfile created on 2016-08-30 19:50:36 -0400 by logger.rb/44203
2
+ D, [2016-08-30T19:50:36.691375 #8918] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
3
+ D, [2016-08-30T19:50:37.763664 #8918] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
4
+ D, [2016-08-30T19:50:38.867145 #8918] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
5
+ D, [2016-08-30T19:50:39.981956 #8918] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
6
+ D, [2016-08-30T19:50:41.073501 #8918] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
7
+ D, [2016-08-30T19:50:42.202704 #8918] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
8
+ D, [2016-08-30T19:50:43.285041 #8918] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
9
+ D, [2016-08-30T20:33:45.715418 #13365] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
10
+ D, [2016-08-30T20:33:46.736077 #13365] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
11
+ D, [2016-08-30T20:33:47.836492 #13365] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
12
+ D, [2016-08-30T20:33:48.949096 #13365] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
13
+ D, [2016-08-30T20:33:50.042181 #13365] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
14
+ D, [2016-08-30T20:33:51.184171 #13365] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
15
+ D, [2016-08-30T20:33:52.251090 #13365] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
16
+ D, [2016-08-30T20:34:46.405703 #13488] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
17
+ D, [2016-08-30T20:34:47.519403 #13488] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
18
+ D, [2016-08-30T20:34:48.621509 #13488] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
19
+ D, [2016-08-30T20:34:49.736709 #13488] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
20
+ D, [2016-08-30T20:34:50.826782 #13488] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
21
+ D, [2016-08-30T20:34:51.969965 #13488] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
22
+ D, [2016-08-30T20:34:53.032649 #13488] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
23
+ D, [2016-08-30T20:35:41.658996 #13603] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
24
+ D, [2016-08-30T20:35:42.680628 #13603] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
25
+ D, [2016-08-30T20:35:43.782311 #13603] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
26
+ D, [2016-08-30T20:35:44.922158 #13603] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
27
+ D, [2016-08-30T20:35:45.990301 #13603] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
28
+ D, [2016-08-30T20:35:47.120273 #13603] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
29
+ D, [2016-08-30T20:35:48.196305 #13603] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
30
+ D, [2016-08-30T20:42:29.254322 #14028] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
31
+ D, [2016-08-30T20:42:30.353861 #14028] DEBUG -- : --> 01 24 21 82 05 30 30 3C 3C 03
32
+ D, [2016-08-30T20:42:31.454691 #14028] DEBUG -- : --> 01 24 22 2D 05 30 30 37 38 03
33
+ D, [2016-08-30T20:42:32.574748 #14028] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
34
+ D, [2016-08-30T20:42:33.660669 #14028] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03
35
+ D, [2016-08-30T20:42:34.800086 #14028] DEBUG -- : --> 01 24 20 4A 05 30 30 39 33 03
36
+ D, [2016-08-30T20:42:35.866917 #14028] DEBUG -- : --> 01 24 21 2C 05 30 30 37 36 03