login signup | whydoineedaccount?
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
Page 1 (Scheduler not running?):
{'cups_connection_failure': False}
Page 2 (Choose printer):
{'cups_dest': <cups.Dest Lexmark--1200-Series (default)>,
 'cups_instance': None,
 'cups_queue': 'Lexmark--1200-Series',
 'cups_queue_listed': True}
Page 3 (Check printer sanity):
{'cups_device_uri_scheme': u'usb',
 'cups_printer_dict': {'device-uri': u'usb://Lexmark/1200%20Series',
                       'printer-info': u'Lexmark  1200 Series',
                       'printer-is-shared': True,
                       'printer-location': u'greh-desktop',
                       'printer-make-and-model': u'Lexmark Z600 v1.0-1',
                       'printer-state': 3,
                       'printer-state-message': u'Processing page 2...',
                       'printer-state-reasons': [u'none'],
                       'printer-type': 167948,
                       'printer-uri-supported': u'ipp://localhost:631/printers/Lexmark--1200-Series'},
 'cups_printer_remote': False,
 'is_cups_class': False,
 'local_cups_queue_attributes': {'auth-info-required': u'none',
                                 'charset-configured': u'utf-8',
                                 'charset-supported': [u'us-ascii', u'utf-8'],
                                 'color-supported': True,
                                 'compression-supported': [u'none', u'gzip'],
                                 'copies-default': 1,
                                 'copies-supported': (1, 9999),
                                 'cups-version': u'1.4.1',
                                 'device-uri': u'usb://Lexmark/1200%20Series',
                                 'document-format-default': u'application/octet-stream',
                                 'document-format-supported': [u'application/octet-stream',
                                                               u'application/openofficeps',
                                                               u'application/pdf',
                                                               u'application/postscript',
                                                               u'application/vnd.cups-banner',
                                                               u'application/vnd.cups-pdf',
                                                               u'application/vnd.cups-postscript',
                                                               u'application/vnd.cups-raster',
                                                               u'application/vnd.cups-raw',
                                                               u'application/vnd.hp-hpgl',
                                                               u'application/x-cshell',
                                                               u'application/x-csource',
                                                               u'application/x-perl',
                                                               u'application/x-shell',
                                                               u'image/gif',
                                                               u'image/jpeg',
                                                               u'image/png',
                                                               u'image/tiff',
                                                               u'image/x-bitmap',
                                                               u'image/x-photocd',
                                                               u'image/x-portable-anymap',
                                                               u'image/x-portable-bitmap',
                                                               u'image/x-portable-graymap',
                                                               u'image/x-portable-pixmap',
                                                               u'image/x-sgi-rgb',
                                                               u'image/x-sun-raster',
                                                               u'image/x-xbitmap',
                                                               u'image/x-xpixmap',
                                                               u'image/x-xwindowdump',
                                                               u'text/css',
                                                               u'text/html',
                                                               u'text/plain'],
                                 'finishings-default': 3,
                                 'finishings-supported': [3],
                                 'generated-natural-language-supported': [u'en_US'],
                                 'ipp-versions-supported': [u'1.0',
                                                            u'1.1',
                                                            u'2.0',
                                                            u'2.1'],
                                 'job-hold-until-default': u'no-hold',
                                 'job-hold-until-supported': [u'no-hold',
                                                              u'indefinite',
                                                              u'day-time',
                                                              u'evening',
                                                              u'night',
                                                              u'second-shift',
                                                              u'third-shift',
                                                              u'weekend'],
                                 'job-k-limit': 0,
                                 'job-page-limit': 0,
                                 'job-priority-default': 50,
                                 'job-priority-supported': [100],
                                 'job-quota-period': 0,
                                 'job-settable-attributes-supported': [u'copies',
                                                                       u'finishings',
                                                                       u'job-hold-until',
                                                                       u'job-priority',
                                                                       u'media',
                                                                       u'multiple-document-handling',
                                                                       u'number-up',
                                                                       u'orientation-requested',
                                                                       u'page-ranges',
                                                                       u'print-quality',
                                                                       u'printer-resolution',
                                                                       u'sides'],
                                 'job-sheets-default': (u'none', u'none'),
                                 'job-sheets-supported': [u'none',
                                                          u'classified',
                                                          u'confidential',
                                                          u'secret',
                                                          u'standard',
                                                          u'topsecret',
                                                          u'unclassified'],
                                 'marker-change-time': 0,
                                 'media-col-supported': [u'media-color',
                                                         u'media-key',
                                                         u'media-size',
                                                         u'media-type'],
                                 'media-default': u'iso_a4_210x297mm',
                                 'media-supported': [u'na_letter_8.5x11in',
                                                     u'iso_a4_210x297mm',
                                                     u'na_invoice_5.5x8.5in',
                                                     u'na_legal_8.5x14in',
                                                     u'jis_b5_182x257mm',
                                                     u'na_executive_7.25x10.5in',
                                                     u'iso_a5_148x210mm',
                                                     u'iso_a6_105x148mm',
                                                     u'na_index-3x5_3x5in',
                                                     u'na_index-4x6_4x6in',
                                                     u'jpn_hagaki_100x148mm',
                                                     u'na_personal_3.625x6.5in',
                                                     u'na_number-9_3.875x8.875in',
                                                     u'na_number-10_4.125x9.5in',
                                                     u'iso_dl_110x220mm',
                                                     u'iso_c5_162x229mm',
                                                     u'iso_c6_114x162mm',
                                                     u'iso_b5_176x250mm',
                                                     u'na_monarch_3.875x7.5in',
                                                     u'na_a2_4.375x5.75in',
                                                     u'jpn_chou3_120x235mm',
                                                     u'jpn_chou4_90x205mm',
                                                     u'adobe_Chokei40_89.9583x240.947mm',
                                                     u'adobe_Kakugata3_8.5x10.9028in',
                                                     u'adobe_Kakugata4_7.75x10.5139in',
                                                     u'adobe_Kakugata5_190.147x239.889mm',
                                                     u'iso_c5_162x229mm',
                                                     u'adobe_L_3.5x5in',
                                                     u'na_5x7_5x7in',
                                                     u'custom_min_2x4in',
                                                     u'custom_max_8.58333x13in'],
                                 'multiple-document-handling-supported': [u'separate-documents-uncollated-copies',
                                                                          u'separate-documents-collated-copies'],
                                 'multiple-document-jobs-supported': True,
                                 'multiple-operation-time-out': 300,
                                 'natural-language-configured': u'en_US',
                                 'notify-attributes-supported': [u'printer-state-change-time',
                                                                 u'notify-lease-expiration-time',
                                                                 u'notify-subscriber-user-name'],
                                 'notify-events-default': [u'job-completed'],
                                 'notify-events-supported': [u'job-completed',
                                                             u'job-config-changed',
                                                             u'job-created',
                                                             u'job-progress',
                                                             u'job-state-changed',
                                                             u'job-stopped',
                                                             u'printer-added',
                                                             u'printer-changed',
                                                             u'printer-config-changed',
                                                             u'printer-deleted',
                                                             u'printer-finishings-changed',
                                                             u'printer-media-changed',
                                                             u'printer-modified',
                                                             u'printer-restarted',
                                                             u'printer-shutdown',
                                                             u'printer-state-changed',
                                                             u'printer-stopped',
                                                             u'server-audit',
                                                             u'server-restarted',
                                                             u'server-started',
                                                             u'server-stopped'],
                                 'notify-lease-duration-default': 86400,
                                 'notify-lease-duration-supported': (0,
                                                                     2147483647),
                                 'notify-max-events-supported': [100],
                                 'notify-pull-method-supported': [u'ippget'],
                                 'notify-schemes-supported': [u'mailto',
                                                              u'rss'],
                                 'number-up-default': 1,
                                 'number-up-supported': [1, 2, 4, 6, 9, 16],
                                 'operations-supported': [2,
                                                          4,
                                                          5,
                                                          6,
                                                          8,
                                                          9,
                                                          10,
                                                          11,
                                                          12,
                                                          13,
                                                          16,
                                                          17,
                                                          18,
                                                          19,
                                                          20,
                                                          21,
                                                          22,
                                                          23,
                                                          24,
                                                          25,
                                                          26,
                                                          27,
                                                          28,
                                                          34,
                                                          35,
                                                          37,
                                                          38,
                                                          16385,
                                                          16386,
                                                          16387,
                                                          16388,
                                                          16389,
                                                          16390,
                                                          16391,
                                                          16392,
                                                          16393,
                                                          16394,
                                                          16395,
                                                          16396,
                                                          16397,
                                                          16398,
                                                          16399,
                                                          16423],
                                 'orientation-requested-default': None,
                                 'orientation-requested-supported': [3,
                                                                     4,
                                                                     5,
                                                                     6],
                                 'page-ranges-supported': True,
                                 'pages-per-minute': 15,
                                 'pdl-override-supported': [u'not-attempted'],
                                 'port-monitor': u'none',
                                 'port-monitor-supported': [u'none'],
                                 'printer-commands': u'none',
                                 'printer-current-time': '(IPP_TAG_DATE)',
                                 'printer-error-policy': u'retry-job',
                                 'printer-error-policy-supported': [u'abort-job',
                                                                    u'retry-current-job',
                                                                    u'retry-job',
                                                                    u'stop-printer'],
                                 'printer-info': u'Lexmark  1200 Series',
                                 'printer-is-accepting-jobs': True,
                                 'printer-is-shared': True,
                                 'printer-location': u'greh-desktop',
                                 'printer-make-and-model': u'Lexmark Z600 v1.0-1',
                                 'printer-more-info': u'http://localhost:631/printers/Lexmark--1200-Series',
                                 'printer-name': u'Lexmark--1200-Series',
                                 'printer-op-policy': u'default',
                                 'printer-op-policy-supported': [u'authenticated',
                                                                 u'default'],
                                 'printer-settable-attributes-supported': [u'printer-info',
                                                                           u'printer-location'],
                                 'printer-state': 3,
                                 'printer-state-change-time': 1265729112,
                                 'printer-state-message': u'Processing page 2...',
                                 'printer-state-reasons': [u'none'],
                                 'printer-type': 167948,
                                 'printer-up-time': 1265729493,
                                 'printer-uri-supported': [u'ipp://localhost:631/printers/Lexmark--1200-Series'],
                                 'queued-job-count': 0,
                                 'server-is-sharing-printers': True,
                                 'uri-authentication-supported': [u'requesting-user-name'],
                                 'uri-security-supported': [u'none']}}
Page 4 (Check PPD sanity):
{'cups_printer_ppd_defaults': {u'General': {u'MediaType': u'Plain',
                                            u'PageRegion': u'A4',
                                            u'PageSize': u'A4'},
                               u'Others': {u'ColorModel': u'Color',
                                           u'Inkset': u'CMYK',
                                           u'PrintQuality': u'Normal'}},
 'cups_printer_ppd_valid': True,
 'missing_pkgs_and_exes': ([], [])}
Page 5 (Local or remote?):
{'printer_is_remote': False}
Page 6 (Choose device):
{'cups_device_dict': {'device-class': u'direct',
                      'device-id': u'MFG:Lexmark ;CMD:CPDNPA001;MODEL:1200 Series;CLASS:Printer;DES:Lexmark 1200 Series;COMMENT:060309-1;',
                      'device-info': u'Lexmark 1200 Series',
                      'device-make-and-model': u'Lexmark 1200 Series'}}
Page 7 (Printer state reasons):
{'printer-state-message': u'Processing page 2...',
 'printer-state-reasons': [u'none']}
Page 8 (Error log checkpoint):
{'cups_server_settings': {'BrowseLocalProtocols': 'CUPS dnssd',
                          'BrowseRemoteProtocols': '',
                          'DefaultAuthType': 'Basic',
                          'MaxLogSize': '0',
                          'SystemGroup': 'lpadmin',
                          '_debug_logging': '1',
                          '_remote_admin': '1',
                          '_remote_any': '1',
                          '_remote_printers': '0',
                          '_share_printers': '1',
                          '_user_cancel_any': '1'},
 'error_log_checkpoint': 820594}
Page 9 (Print test page):
{'test_page_attempted': '09/lut/2010:16:31:55 +0000',
 'test_page_job_id': [44],
 'test_page_job_status': [(True,
                           44,
                           'Lexmark--1200-Series',
                           'Test Page',
                           'Przetwarzanie',
                           {'attributes-charset': u'utf-8',
                            'attributes-natural-language': u'pl-pl',
                            'document-count': 0,
                            'document-format': u'application/vnd.cups-banner',
                            'job-hold-until': u'no-hold',
                            'job-id': 44,
                            'job-k-octets': 1,
                            'job-media-progress': 0,
                            'job-media-sheets-completed': 0,
                            'job-more-info': u'ipp://localhost:631/jobs/44',
                            'job-name': u'Test Page',
                            'job-originating-host-name': u'localhost',
                            'job-originating-user-name': u'greh',
                            'job-preserved': False,
                            'job-printer-state-message': u'/usr/lib/cups/filter/rastertoz600 failed',
                            'job-printer-state-reasons': [u'none'],
                            'job-printer-up-time': 1265729526,
                            'job-printer-uri': u'ipp://greh-desktop:631/printers/Lexmark--1200-Series',
                            'job-priority': 50,
                            'job-sheets': [u'none', u'none'],
                            'job-state': 7,
                            'job-state-reasons': u'job-canceled-by-user',
                            'job-uri': u'ipp://localhost:631/jobs/44',
                            'job-uuid': u'urn:uuid:956a91a7-3ae7-33d0-5e42-b057e59ddb90',
                            'printer-uri': u'ipp://localhost/printers/Lexmark--1200-Series',
                            'time-at-completed': 1265729524,
                            'time-at-creation': 1265729515,
                            'time-at-processing': 1265729515})],
 'test_page_successful': False}
Page 10 (Error log fetch):
{'error_log': ['D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Not busy',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Active clients',
               'D [09/Feb/2010:16:31:52 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:52 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:52 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Not busy',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Active clients',
               'D [09/Feb/2010:16:31:52 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:52 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:52 +0100] [Job 1] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 2] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 20] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 21] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 22] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 23] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 24] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 25] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 26] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 27] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 30] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 31] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 32] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 33] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 34] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 35] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 36] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 37] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 38] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 39] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 40] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 41] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 42] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] [Job 43] Loading attributes...',
               'D [09/Feb/2010:16:31:52 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Not busy',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Active clients',
               'D [09/Feb/2010:16:31:52 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:52 +0100] cupsdReadClient: 13 1.1 Create-Printer-Subscription 1',
               'D [09/Feb/2010:16:31:52 +0100] Create-Printer-Subscription /',
               'D [09/Feb/2010:16:31:52 +0100] cupsdCreateSubscription(con=0x7f12464e4f60(13), uri="/")',
               'D [09/Feb/2010:16:31:52 +0100] pullmethod="ippget"',
               'D [09/Feb/2010:16:31:52 +0100] notify-lease-duration=86400',
               'D [09/Feb/2010:16:31:52 +0100] notify-time-interval=0',
               'D [09/Feb/2010:16:31:52 +0100] cupsdAddSubscription(mask=17800, dest=(nil)(), job=(nil)(0), uri="(null)")',
               'D [09/Feb/2010:16:31:52 +0100] Added subscription 53 for server',
               'D [09/Feb/2010:16:31:52 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Active clients and dirty files',
               'D [09/Feb/2010:16:31:52 +0100] Returning IPP successful-ok for Create-Printer-Subscription (/) from localhost',
               'D [09/Feb/2010:16:31:52 +0100] cupsdSetBusyState: Dirty files',
               'D [09/Feb/2010:16:31:53 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:53 +0100] cupsdSetBusyState: Active clients and dirty files',
               'D [09/Feb/2010:16:31:53 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:53 +0100] cupsdReadClient: 13 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:53 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:53 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:31:53 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:53 +0100] cupsdSetBusyState: Dirty files',
               'D [09/Feb/2010:16:31:55 +0100] cupsdAcceptClient: 21 from localhost (Domain)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdReadClient: 21 POST /printers/Lexmark--1200-Series HTTP/1.1',
               'D [09/Feb/2010:16:31:55 +0100] cupsdSetBusyState: Active clients and dirty files',
               'D [09/Feb/2010:16:31:55 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:55 +0100] cupsdReadClient: 21 1.1 Print-Job 1',
               'D [09/Feb/2010:16:31:55 +0100] Print-Job ipp://localhost/printers/Lexmark--1200-Series',
               'D [09/Feb/2010:16:31:55 +0100] [Job ???] Auto-typing file...',
               'I [09/Feb/2010:16:31:55 +0100] [Job ???] Request file type is application/vnd.cups-banner.',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(----J-)',
               'D [09/Feb/2010:16:31:55 +0100] add_job: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:55 +0100] Adding default job-sheets values "none,none"...',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Adding start banner page "none".',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(----J-)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Adding end banner page "none".',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] File of type application/vnd.cups-banner queued by "greh".',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] hold_until=0',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Queued on "Lexmark--1200-Series" by "greh".',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(----J-)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] job-sheets=none,none',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[0]="Lexmark--1200-Series"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[1]="44"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[2]="greh"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[3]="Test Page"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[4]="1"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[5]="job-uuid=urn:uuid:956a91a7-3ae7-33d0-5e42-b057e59ddb90 job-originating-host-name=localhost"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] argv[6]="/var/spool/cups/d00044-001"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[1]="CUPS_DATADIR=/usr/share/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[6]="CUPS_SERVERROOT=/etc/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[7]="CUPS_STATEDIR=/var/run/cups"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[8]="HOME=/var/spool/cups/tmp"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[10]="SERVER_ADMIN=root@greh-desktop"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[11]="SOFTWARE=CUPS/1.4.1"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[12]="TMPDIR=/var/spool/cups/tmp"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[13]="TZ=Europe/Warsaw"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[14]="USER=root"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[16]="CUPS_ENCRYPTION=IfRequested"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[17]="IPP_PORT=631"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[18]="CHARSET=utf-8"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[19]="LANG=pl_PL.UTF-8"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[20]="PPD=/etc/cups/ppd/Lexmark--1200-Series.ppd"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[21]="RIP_MAX_CACHE=1532314k"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[22]="CONTENT_TYPE=application/vnd.cups-banner"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[23]="DEVICE_URI=usb://Lexmark/1200%20Series"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[24]="PRINTER_INFO=Lexmark  1200 Series"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[25]="PRINTER_LOCATION=greh-desktop"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[26]="PRINTER=Lexmark--1200-Series"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[27]="CUPS_FILETYPE=document"',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] envp[28]="FINAL_CONTENT_TYPE=printer/Lexmark--1200-Series"',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started filter /usr/lib/cups/filter/bannertops (PID 3719)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started filter /usr/lib/cups/filter/pstopdf (PID 3720)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started filter /usr/lib/cups/filter/pdftopdf (PID 3723)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started filter /usr/lib/cups/filter/pdftoraster (PID 3724)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started filter /usr/lib/cups/filter/rastertoz600 (PID 3725)',
               'I [09/Feb/2010:16:31:55 +0100] [Job 44] Started backend /usr/lib/cups/backend/usb (PID 3726)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:55 +0100] Returning IPP successful-ok for Print-Job (ipp://localhost/printers/Lexmark--1200-Series) from localhost',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] pstopdf 5 args: 44 greh Test Page 1 job-uuid=urn:uuid:956a91a7-3ae7-33d0-5e42-b057e59ddb90 job-originating-host-name=localhost',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] PPD: /etc/cups/ppd/Lexmark--1200-Series.ppd',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] STATE: +connecting-to-device',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] load_banner(filename="/var/spool/cups/d00044-001")',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] Printer using device file "/dev/usblp0"...',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] STATE: -connecting-to-device',
               'D [09/Feb/2010:16:31:55 +0100] [Job 44] backendRunLoop(print_fd=0, device_fd=5, snmp_fd=-1, addr=(nil), use_bc=1, side_cb=0x7fb9f4488670)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:55 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Lexmark--1200-Series: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory',
               'D [09/Feb/2010:16:31:56 +0100] PID 3725 (/usr/lib/cups/filter/rastertoz600) stopped with status 127!',
               'D [09/Feb/2010:16:31:56 +0100] PID 3726 (/usr/lib/cups/backend/usb) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Page = 595x842; 18,36 to 585,837',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] PNG image: 128x128x8, color_type=6 (RGB+ALPHA)',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] PNG image: 192x128x8, color_type=2 (RGB)',
               'D [09/Feb/2010:16:31:56 +0100] PID 3719 (/usr/lib/cups/filter/bannertops) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Resolution:',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Page size: A4',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Width: 595, height: 842, absolute margins: 18, 36, 585, 837',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Relative margins: 18, 36, 10, 5',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] PPD options: -dDEVICEWIDTHPOINTS=595 -dDEVICEHEIGHTPOINTS=842',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] PostScript to be injected:',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Running cat | /usr/bin/ps2pdf13 -dAutoRotatePages=/None -dAutoFilterColorImages=false                -dNOPLATFONTS -dPARANOIDSAFER -sstdout=%stderr -dColorImageFilter=/FlateEncode                 -dPDFSETTINGS=/printer -dDoNumCopies -dDEVICEWIDTHPOINTS=595 -dDEVICEHEIGHTPOINTS=842 - -',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 23 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:56 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 23',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 23 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 13 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:56 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Printers 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Printers',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Classes 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Classes',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Default 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Default',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 24 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 23',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 24 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 24 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:56 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Printers 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Printers',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Classes 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Classes',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Default 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Default',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 24 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 24 1.1 Get-Job-Attributes 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Job-Attributes ipp://localhost/jobs/44',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/44) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] GPL Ghostscript 8.70: Set UseCIEColor for UseDeviceIndependentColor to work properly.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 24 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 24',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 23 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 1.1 Get-Printer-Attributes 1',
               'D [09/Feb/2010:16:31:56 +0100] Get-Printer-Attributes ipp://localhost/printers/Lexmark--1200-Series',
               'D [09/Feb/2010:16:31:56 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/Lexmark--1200-Series) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 24 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 23',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 23 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 1.1 CUPS-Get-Devices 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Devices',
               'D [09/Feb/2010:16:31:56 +0100] cupsdIsAuthorized: username=""',
               'D [09/Feb/2010:16:31:56 +0100] Returning HTTP Unauthorized for CUPS-Get-Devices (no URI) from localhost',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSendHeader: 23 WWW-Authenticate: Basic realm="CUPS", trc="y"',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 25 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 23',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Printing jobs and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAcceptClient: 23 from localhost (Domain)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 25 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:56 +0100] cupsdCloseClient: 25',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSetBusyState: Active clients, printing jobs, and dirty files',
               'D [09/Feb/2010:16:31:56 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:56 +0100] cupsdReadClient: 23 1.1 CUPS-Get-Devices 1',
               'D [09/Feb/2010:16:31:56 +0100] CUPS-Get-Devices',
               'D [09/Feb/2010:16:31:56 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[0] = "/usr/lib/cups/daemon/cups-deviced"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[1] = "1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[2] = "0"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[3] = "15"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[4] = "7"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] argv[5] = "requested-attributes=all"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc-root"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@greh-desktop"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.4.1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[13] = "TZ=Europe/Warsaw"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[14] = "USER=root"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[15] = "CUPS_SERVER=/var/run/cups/cups.sock"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[17] = "IPP_PORT=631"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[18] = "CUPSD_AUTH_TYPE=PeerCred"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[19] = "LANG=pl_PL.UTF8"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[20] = "REDIRECT_STATUS=1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[21] = "GATEWAY_INTERFACE=CGI/1.1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[22] = "SERVER_NAME=localhost"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[23] = "SERVER_PORT=631"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[24] = "REMOTE_ADDR="',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[25] = "REMOTE_HOST=localhost"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[26] = "SCRIPT_NAME=/"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[27] = "SCRIPT_FILENAME=/usr/share/cups/doc-root/"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[28] = "REMOTE_USER=greh"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[29] = "SERVER_PROTOCOL=HTTP/1.1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=CUPS/1.4.1"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[31] = "REQUEST_METHOD=POST"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[32] = "CONTENT_LENGTH=75"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] envp[33] = "CONTENT_TYPE=application/ipp"',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Started /usr/lib/cups/daemon/cups-deviced (PID 3757)',
               'I [09/Feb/2010:16:31:56 +0100] Started "/usr/lib/cups/daemon/cups-deviced" (pid=3757)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdSendCommand: 23 file=25',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/dnssd (PID 3758)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/z600 (PID 3759)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/http (PID 3760)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/ipp (PID 3761)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/beh (PID 3762)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/parallel (PID 3763)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/lpd (PID 3764)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/scsi (PID 3765)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/serial (PID 3766)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/snmp (PID 3767)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/hp (PID 3768)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/socket (PID 3769)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/usb (PID 3770)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/smb (PID 3771)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/bluetooth (PID 3772)',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/hpfax (PID 3773)',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "ipp"...',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "beh"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3761 (ipp) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3762 (beh) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "socket"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3769 (socket) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] list_devices_libusb',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] usb_find_busses=2',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] usb_find_devices=8',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "smb"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3771 (smb) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] Script header: Content-Type: application/ipp',
               'D [09/Feb/2010:16:31:56 +0100] Script header:',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "serial:/dev/ttyS0?baud=115200"...',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "serial:/dev/ttyS1?baud=115200"...',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "usb://Lexmark/1200%20Series"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3766 (serial) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3772 (bluetooth) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3770 (usb) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "scsi"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3765 (scsi) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "lpd"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3764 (lpd) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "http"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3760 (http) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] z600: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory',
               'E [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3759 (z600) stopped with status 127!',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "hp"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3768 (hp) exited with no errors.',
               'W [09/Feb/2010:16:31:56 +0100] [CGI] Unhandled message: interface=org.freedesktop.DBus.Introspectable, path=/, member=Introspect',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "parallel:/dev/lp0"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3763 (parallel) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [CGI] Flushed attributes...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] Found device "hpfax"...',
               'D [09/Feb/2010:16:31:56 +0100] [cups-deviced] PID 3773 (hpfax) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] PID 3720 (/usr/lib/cups/filter/pstopdf) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] PID 3723 (/usr/lib/cups/filter/pdftopdf) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Ghostscript command line: /usr/bin/gs -dQUIET -dPARANOIDSAFER -dNOPAUSE -dBATCH -sDEVICE=cups -sstdout=%stderr -sOutputFile=%stdout -I/usr/share/cups/fonts -r600x600 -dDEVICEWIDTHPOINTS=595 -dDEVICEHEIGHTPOINTS=842 -dcupsBitsPerColor=8 -dcupsColorOrder=0 -dcupsColorSpace=1 -dcupsCompression=1 -dcupsRowStep=3 -scupsPageSizeName=A4 -c -f -_',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[0]="CUPS_CACHEDIR=/var/cache/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[1]="CUPS_DATADIR=/usr/share/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[6]="CUPS_SERVERROOT=/etc/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[7]="CUPS_STATEDIR=/var/run/cups"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[8]="HOME=/var/spool/cups/tmp"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[10]="SERVER_ADMIN=root@greh-desktop"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[11]="SOFTWARE=CUPS/1.4.1"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[12]="TZ=Europe/Warsaw"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[13]="USER=root"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[14]="CUPS_SERVER=/var/run/cups/cups.sock"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[15]="CUPS_ENCRYPTION=IfRequested"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[16]="IPP_PORT=631"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[17]="CHARSET=utf-8"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[18]="LANG=pl_PL.UTF-8"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[19]="PPD=/etc/cups/ppd/Lexmark--1200-Series.ppd"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[20]="RIP_MAX_CACHE=1532314k"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[21]="CONTENT_TYPE=application/vnd.cups-banner"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[22]="DEVICE_URI=usb://Lexmark/1200%20Series"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[23]="PRINTER_INFO=Lexmark  1200 Series"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[24]="PRINTER_LOCATION=greh-desktop"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[25]="PRINTER=Lexmark--1200-Series"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[26]="CUPS_FILETYPE=document"',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] envp[27]="FINAL_CONTENT_TYPE=printer/Lexmark--1200-Series"',
               'D [09/Feb/2010:16:31:56 +0100] PID 3724 (/usr/lib/cups/filter/pdftoraster) exited with no errors.',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] num_components = 1, depth = 1',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsColorSpace = 3, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsBitsPerPixel = 1, cupsBitsPerColor = 1',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_gray = 1, dither_grays = 2',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_color = 0, dither_colors = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Updating PageSize to [595 842]...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting initial media size, [595 842] = 4958x7017 pixels...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsBitsPerColor to 8...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsColorOrder to 0...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsColorSpace to 1...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsCompression to 1...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsRowStep to 3...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting cupsPageSizeName to "A4"...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting initial media size, [595 842] = 4958x7017 pixels...',
               'I [09/Feb/2010:16:31:56 +0100] [Job 44] Processing page 1...',
               'D [09/Feb/2010:16:31:56 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:56 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Setting LeadingEdge to 0...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] Updating PageSize to [595 842]...',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] size = A4',
               'D [09/Feb/2010:16:31:56 +0100] [Job 44] margins[] = [ 0.250000 0.500000 0.138889 0.069444 ]',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 26 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 27 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 28 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 26',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 27',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 13 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Printers 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Printers',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 28',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Classes 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Classes',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Default 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Default',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting LeadingEdge to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting LeadingEdge to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Updating PageSize to [595 842]...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] size = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins[] = [ 0.250000 0.500000 0.138889 0.069444 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_print_chunked - flip = 0, height = 6675',
               'I [09/Feb/2010:16:31:57 +0100] [Job 44] Processing page 2...',
               'D [09/Feb/2010:16:31:57 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting AdvanceDistance to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting AdvanceMedia to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Collate to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting CutMedia to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Duplex to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Jog to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting LeadingEdge to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Margins to 0 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting MirrorPrint to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting NegativePrint to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting OutputFaceUp to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Separations to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting TraySwitch to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Tumble to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsMediaType to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsBitsPerColor to 8...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsColorOrder to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsColorSpace to 1...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsCompression to 1...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowCount to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowFeed to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowStep to 3...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsBorderlessScalingFactor to 1.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger0 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger1 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger2 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger3 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger4 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger5 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger6 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger7 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger8 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger9 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger10 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger11 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger12 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger13 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger14 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger15 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal0 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal1 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal2 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal3 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal4 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal5 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal6 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal7 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal8 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal9 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal10 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal11 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal12 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal13 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal14 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal15 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString0 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString1 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString2 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString3 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString4 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString5 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString6 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString7 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString8 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString9 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString10 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString11 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString12 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString13 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString14 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString15 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsMarkerType to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRenderingIntent to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsPageSizeName to "A4"...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Updating PageSize to [595 842]...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] size = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins[] = [ 0.250000 0.500000 0.138889 0.069444 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting AdvanceDistance to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting AdvanceMedia to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Collate to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting CutMedia to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Duplex to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Jog to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting LeadingEdge to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Margins to 0 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting MirrorPrint to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting NegativePrint to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting OutputFaceUp to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Separations to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting TraySwitch to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting Tumble to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsMediaType to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsBitsPerColor to 8...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsColorOrder to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsColorSpace to 1...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsCompression to 1...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowCount to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowFeed to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRowStep to 3...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsBorderlessScalingFactor to 1.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger0 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger1 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger2 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger3 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger4 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger5 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger6 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger7 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger8 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger9 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger10 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger11 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger12 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger13 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger14 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsInteger15 to 0...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal0 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal1 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal2 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal3 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal4 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal5 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal6 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal7 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal8 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal9 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal10 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal11 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal12 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal13 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal14 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsReal15 to 0.0000...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString0 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString1 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString2 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString3 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString4 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString5 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString6 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString7 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString8 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString9 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString10 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString11 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString12 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString13 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString14 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsString15 to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsMarkerType to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsRenderingIntent to ""...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Setting cupsPageSizeName to "A4"...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] num_components = 3, depth = 24',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsColorSpace = 1, cupsColorOrder = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsBitsPerPixel = 24, cupsBitsPerColor = 8',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_gray = 0, dither_grays = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] max_color = 255, dither_colors = 256',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Updating PageSize to [595 842]...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] size = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins[] = [ 0.250000 0.500000 0.138889 0.069444 ]',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 26 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 27 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 28 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 26',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 27',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 13 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Printers 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Printers',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 28 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 28',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Classes 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Classes',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdMarkDirty(-----S)',
               'E [09/Feb/2010:16:31:57 +0100] [Job 44] Job stopped due to filter errors; please consult the error_log file for details.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdMarkDirty(----J-)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] The following messages were recorded from 16:31:57 to 16:31:57',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_put_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_set_color_info(0x17bd248)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[0] = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[65535] = 255',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_put_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_set_color_info(0x17bd248)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[0] = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[65535] = 255',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.cupsPageSizeName = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Reallocating memory, [595 842] = 4725x6675 pixels...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_space_params(0x17bd248, 0x7fff8c8d4310)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cache_size = 1569089536',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] ppd = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595.000 842.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins = [ 0.250 0.500 0.139 0.069 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWResolution = [ 600.000 600.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4650)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4600)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4690)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4680)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4540)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4630)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4630)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d3e40)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 1',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] before gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] after gdev_prn_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Leaving cups_get_params()',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_print_pages(0x17bd248, 0x7f793de59780, 1)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsBitsPerPixel = 24, cupsWidth = 4725, cupsBytesPerLine = 14175, srcbytes = 14175',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsWidth = 4725, cupsHeight = 6675, cupsBytesPerLine = 14175',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_matrix(0x17bd248, 0x7fff8c8d4630)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 2',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595 842 ], HWResolution = [ 600 600 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] matrix = [ 8.333 0.000 0.000 -8.333 -150.000 6975.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_put_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_set_color_info(0x17bd248)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[0] = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[65535] = 255',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 2',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.cupsPageSizeName = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Reallocating memory, [595 842] = 4725x6675 pixels...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_space_params(0x17bd248, 0x7fff8c8d4310)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cache_size = 1569089536',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] ppd = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595.000 842.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins = [ 0.250 0.500 0.139 0.069 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWResolution = [ 600.000 600.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_put_params(0x17bd248, 0x7fff8c8d4610)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_set_color_info(0x17bd248)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[0] = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsEncodeLUT[65535] = 255',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.Duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->page = 2',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cupsPPD->flip_duplex = 0',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups->header.cupsPageSizeName = A4',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] Reallocating memory, [595 842] = 4725x6675 pixels...',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_get_space_params(0x17bd248, 0x7fff8c8d4310)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cache_size = 1569089536',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] ppd = 0x1985680',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] PageSize = [ 595.000 842.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] margins = [ 0.250 0.500 0.139 0.069 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWResolution = [ 600.000 600.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] width = 4725, height = 6675',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] HWMargins = [ 18.000 36.000 10.000 5.000 ]',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] cups_close(0x17bd248)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] End of messages',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] printer-state=3(idle)',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] printer-state-message="Processing page 2..."',
               'D [09/Feb/2010:16:31:57 +0100] [Job 44] printer-state-reasons=none',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Default 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Default',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdSetBusyState: Active clients and dirty files',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 22 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 1.1 Get-Jobs 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Jobs ipp://localhost/printers/',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 26 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 22',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 22 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:31:57 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAcceptClient: 27 from localhost (Domain)',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 22 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 22',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 1.1 Get-Printer-Attributes 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Printer-Attributes ipp://greh-desktop:631/printers/Lexmark--1200-Series',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Printer-Attributes (ipp://greh-desktop:631/printers/Lexmark--1200-Series) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Printers 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Printers',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Classes 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Classes',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 27 1.1 Get-Job-Attributes 1',
               'D [09/Feb/2010:16:31:57 +0100] Get-Job-Attributes ipp://localhost/jobs/44',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/44) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 POST / HTTP/1.1',
               'D [09/Feb/2010:16:31:57 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 12 1.1 CUPS-Get-Default 1',
               'D [09/Feb/2010:16:31:57 +0100] CUPS-Get-Default',
               'D [09/Feb/2010:16:31:57 +0100] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost',
               'D [09/Feb/2010:16:31:57 +0100] cupsdReadClient: 26 WAITING Closing on EOF',
               'D [09/Feb/2010:16:31:57 +0100] cupsdCloseClient: 26',
               'D [09/Feb/2010:16:31:58 +0100] [cups-deviced] PID 3767 (snmp) exited with no errors.',
               'D [09/Feb/2010:16:31:58 +0100] [Job 44] Unloading...',
               'D [09/Feb/2010:16:32:04 +0100] cupsdAcceptClient: 22 from localhost (Domain)',
               'D [09/Feb/2010:16:32:04 +0100] cupsdReadClient: 22 POST /jobs/ HTTP/1.1',
               'D [09/Feb/2010:16:32:04 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:32:04 +0100] cupsdReadClient: 22 1.1 Cancel-Job 1',
               'D [09/Feb/2010:16:32:04 +0100] Cancel-Job ipp://localhost/jobs/44',
               'D [09/Feb/2010:16:32:04 +0100] [Job 44] Loading attributes...',
               'D [09/Feb/2010:16:32:04 +0100] cupsdMarkDirty(-----S)',
               'I [09/Feb/2010:16:32:04 +0100] [Job 44] Job canceled by "greh"',
               'D [09/Feb/2010:16:32:04 +0100] cupsdMarkDirty(----J-)',
               'I [09/Feb/2010:16:32:04 +0100] [Job 44] Canceled by "greh".',
               'D [09/Feb/2010:16:32:04 +0100] Returning IPP successful-ok for Cancel-Job (ipp://localhost/jobs/44) from localhost',
               'D [09/Feb/2010:16:32:04 +0100] cupsdAcceptClient: 26 from localhost (Domain)',
               'D [09/Feb/2010:16:32:04 +0100] cupsdReadClient: 26 POST / HTTP/1.1',
               'D [09/Feb/2010:16:32:04 +0100] cupsdAuthorize: No authentication data provided.',
               'D [09/Feb/2010:16:32:04 +0100] cupsdReadClient: 26 1.1 Get-Notifications 1',
               'D [09/Feb/2010:16:32:04 +0100] Get-Notifications /',
               'D [09/Feb/2010:16:32:04 +0100] cupsdIsAuthorized: requesting-user-name="greh"',
               'D [09/Feb/2010:16:32:04 +0100] Returning IPP successful-ok for Get-Notifications (/) from localhost',
               'D [09/Feb/2010:16:32:04 +0100] cupsdReadClient: 26 WAITING Closing on EOF',
               'D [09/Feb/2010:16:32:04 +0100] cupsdCloseClient: 26',
               'D [09/Feb/2010:16:32:06 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:32:06 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:32:06 +0100] cupsdReadClient: 13 1.1 Get-Job-Attributes 1',
               'D [09/Feb/2010:16:32:06 +0100] Get-Job-Attributes ipp://localhost/jobs/44',
               'D [09/Feb/2010:16:32:06 +0100] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/44) from localhost',
               'D [09/Feb/2010:16:32:06 +0100] cupsdReadClient: 13 POST / HTTP/1.1',
               'D [09/Feb/2010:16:32:06 +0100] cupsdAuthorize: Authorized as greh using PeerCred',
               'D [09/Feb/2010:16:32:06 +0100] cupsdReadClient: 13 1.1 Cancel-Subscription 1',
               'D [09/Feb/2010:16:32:06 +0100] Cancel-Subscription /',
               'D [09/Feb/2010:16:32:06 +0100] cupsdIsAuthorized: username="greh"',
               'D [09/Feb/2010:16:32:06 +0100] cupsdMarkDirty(-----S)',
               'D [09/Feb/2010:16:32:06 +0100] Returning IPP successful-ok for Cancel-Subscription (/) from localhost',
               'D [09/Feb/2010:16:32:07 +0100] cupsdAcceptClient: 26 from localhost (Domain)',
               'D [09/Feb/2010:16:32:07 +0100] cupsdReadClient: 26 GET /admin/log/error_log HTTP/1.1',
               'D [09/Feb/2010:16:32:07 +0100] cupsdAuthorize: No authentication data provided.']}
Page 11 (Locale issues):
{'printer_page_size': u'A4',
 'system_locale_lang': None,
 'user_locale_ctype': 'pl_PL',
 'user_locale_messages': 'pl_PL'}
back to top ↑

Did you know, that…?

wklej.org it's a NoPaste site, which allows you to paste here any text, or source code, which will be available under special URL. Thanks to this, you can make forums or IRC channels more readable