mikenike
(Themenstarter)
Anmeldungsdatum: 1. Februar 2011
Beiträge: 20
|
Letztlich lag es glaube ich an dem Hinweis, dass es zwei mysql.txt dateien gibt. Die zweite liegt im /home/mythtv/ Verzeichniss und heißt ein bisschen anders (mysql.txt.db oder soähnlich). Danach ging plötzlich so einiges. Geholfen hat auch das einloggen in die SQL Datenbank. da hat man dann wenigstens gewissheit welches Passwort richtig ist 😉
Man darf sich auch nicht durch die verschiedenen Ports verwirren lassen: Im Backend Setup sind als Port bei mir 6543 und als Statusport 6544 eingestellt. Bei den Frontends muss man aber 3306 einstellen... sonst klappts irgendwie nicht... warum weiß ich nicht, vllt kanns ja nochmal einer erklären. Nochmal zurück zum stand der Dinge: Ich kann über UpnP Devices unter videos meinen Mythtvbackend hinzufügen. ich hab zum testen auch eine kleine N24 Aufnahme über den Mythtv Frontend gemacht. Die kann ich auch über XBMC Videos ansehen. soweit sogut. Ich weiß nicht wie ich die benannten Berechtigungen von mythbox/xbmc kontrolliere oder einstelle. Ich habe die XBMC PVR version, muss ich das MythTV PVR Plugin aktivieren? Muss ich bei den LiveTV Einstellungen von XBMC irgendwas machen? Ich hab schon bisschen rumprobiert, aber hat nix geholfen. werde gleich per edit Die Logdatei von Mythbox noch hier reinposten.
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 |
INFO | mythbox.core | bootstrapper.py | MainThread | Line 88 | Mythbox Logger Initialized
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[0] = /home/mike/.xbmc/addons/script.mythbox
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[1] = /home/mike/.xbmc/addons/script.module.simplejson/lib
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[2] = /home/mike/.xbmc/addons/script.module.beautifulsoup/lib
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[3] = /usr/lib/xbmc/addons/script.module.pil/lib
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[4] = /home/mike/.xbmc/addons/script.module.elementtree/lib
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[5] = /usr/lib/xbmc/addons/script.module.pysqlite/lib
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[6] = /usr/lib/xbmc/system/python/python24.zip
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[7] = /usr/share/xbmc/system/python/lib/python24.zip
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[8] = /usr/share/xbmc/system/python/lib/python2.4/
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[9] = /usr/share/xbmc/system/python/lib/python2.4/plat-linux2
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[10] = /usr/share/xbmc/system/python/lib/python2.4/lib-tk
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[11] = /usr/share/xbmc/system/python/lib/python2.4/lib-dynload
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[12] = /home/mike/.xbmc/addons/script.mythbox/resources/src
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[13] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/pyxcoder
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[14] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/decorator
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[15] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/odict
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[16] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/elementtree
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[17] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/tvdb_api
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[18] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/tvrage
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[19] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/themoviedb
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[20] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/IMDbPY
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[21] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/simplejson
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[22] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/mysql-connector-python
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[23] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/python-twitter
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[24] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/twisted
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[25] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/zope.interface
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[26] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/mockito
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[27] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/unittest2
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[28] = /home/mike/.xbmc/addons/script.mythbox/resources/lib/unittest
DEBUG | mythbox.core | platform.py | MainThread | Line 89 | syspath[29] = /home/mike/.xbmc/addons/script.mythbox/resources/test
INFO | mythbox.core | bootstrapper.py | MainThread | Line 106 | Mythbox Platform Initialized
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 250
DEBUG | mythbox.core | db.py | MainThread | Line 191 | Initializing myth database connection
DEBUG | mythbox.core | db.py | MainThread | Line 218 | Closing myth db connection
DEBUG | mythbox.core | db.py | MainThread | Line 191 | Initializing myth database connection
DEBUG | mythbox.core | conn.py | MainThread | Line 214 | getServerVersion: REJECT 23056
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: negotiateProtocol took 0.00 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: annPlayback took 0.09 seconds
DEBUG | mythbox.core | db.py | MainThread | Line 218 | Closing myth db connection
DEBUG | mythbox.settings | settings.py | MainThread | Line 202 | verified settings
DEBUG | mythbox.core | db.py | MainThread | Line 191 | Initializing myth database connection
INFO | mythbox.ui | home.py | MainThread | Line 188 | Backend info
INFO | mythbox.ui | home.py | MainThread | Line 190 | Backend {ip = 192.168.178.22, hostname = ion330, port = 6543, master = True}
DEBUG | mythbox.core | db.py | Thread-5 | Line 191 | Initializing myth database connection
DEBUG | mythbox.ui | home.py | Thread-8 | Line 466 | renderNewsFeed enter
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: negotiateProtocol took 0.01 seconds
DEBUG | mythbox.core | db.py | Thread-5 | Line 660 |
select
id,
chanid,
starttime,
inserttime,
type,
cmds,
flags,
status,
statustime,
hostname,
comment,
schedruntime
from
jobqueue
where status = 4 order by schedruntime, id
DEBUG | mythbox.core | db.py | Thread-5 | Line 660 |
select
id,
chanid,
starttime,
inserttime,
type,
cmds,
flags,
status,
statustime,
hostname,
comment,
schedruntime
from
jobqueue
where status = 1 order by schedruntime, id
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: annPlayback took 0.12 seconds
DEBUG | mythbox.perf | util.py | Thread-6 | Line 334 | TIMER: negotiateProtocol took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: getTuners took 0.01 seconds
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: getTunerStatus took 0.05 seconds
DEBUG | mythbox.perf | util.py | Thread-6 | Line 334 | TIMER: annPlayback took 0.16 seconds
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: getTunerStatus took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-7 | Line 334 | TIMER: negotiateProtocol took 0.00 seconds
DEBUG | mythbox.core | conn.py | Thread-4 | Line 722 | getUpcomingRecordings reply begin= ['0', '1', 'N24 Nachrichten', '', 'Nachrichten und aktuelle Entwicklungen aus Politik, Wirtschaft und Gesellschaft in Deutschland und der Welt sowie das Wetter.', '', '18503', '17503', 'N24', 'N24', '', '0', '0', '1300945260', '1300993140', '0', '0', '0', 'ion330', '1', '0', '0', '1', '-3', '1', '1', '15', '6', '1300945260', '1300993140', '0', '0', 'Default', '0', '', '', '', '1300972179', '0.000000', '', '0', 'Default', '0', '0', 'Default', '1', '2', '0', '0']
DEBUG | mythbox.core | conn.py | Thread-4 | Line 723 | getUpcomingRecordings reply end = ['0', '1', 'N24 Nachrichten', '', 'Nachrichten und aktuelle Entwicklungen aus Politik, Wirtschaft und Gesellschaft in Deutschland und der Welt sowie das Wetter.', '', '18503', '17503', 'N24', 'N24', '', '0', '0', '1300945260', '1300993140', '0', '0', '0', 'ion330', '1', '0', '0', '1', '-3', '1', '1', '15', '6', '1300945260', '1300993140', '0', '0', 'Default', '0', '', '', '', '1300972179', '0.000000', '', '0', 'Default', '0', '0', 'Default', '1', '2', '0', '0']
DEBUG | mythbox.perf | util.py | Thread-7 | Line 334 | TIMER: annPlayback took 0.10 seconds
DEBUG | mythbox.perf | util.py | Thread-4 | Line 334 | TIMER: getUpcomingRecordings took 0.16 seconds
DEBUG | mythbox.ui | home.py | Thread-7 | Line 304 | >> renderCoverFlow begin
DEBUG | mythbox.perf | util.py | Thread-7 | Line 334 | TIMER: getAllRecordings took 0.03 seconds
DEBUG | mythbox.ui | home.py | Thread-8 | Line 474 | renderNewsFeed exit
DEBUG | mythbox.ui | home.py | Thread-7 | Line 314 | Coverflow 1/6: N24 Nachrichten
DEBUG | mythbox.ui | home.py | Thread-7 | Line 330 | <<< renderCoverFlow end
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 251
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 252
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 253
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 254
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 256
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 146 | onInit
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering fanart_tmdb
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering logging_enabled
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering fanart_tvdb
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering mysql_host
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering mysql_port
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering mysql_database
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering mysql_user
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering mysql_password
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering paths_recordedprefix
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering fanart_imdb
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering fanart_google
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering confirm_on_delete
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering fanart_tvrage
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering feeds_twitter
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering aggressive_caching
DEBUG | mythbox.ui | uisettings.py | MainThread | Line 210 | Rendering lirc_hack
WARNING | mythbox.perf | util.py | MainThread | Line 331 | TIMER: onInit took 0.93 seconds
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 256
DEBUG | mythbox.core | db.py | Thread-10 | Line 660 |
select
id,
chanid,
starttime,
inserttime,
type,
cmds,
flags,
status,
statustime,
hostname,
comment,
schedruntime
from
jobqueue
where status = 4 order by schedruntime, id
DEBUG | mythbox.perf | util.py | Thread-9 | Line 334 | TIMER: getTuners took 0.00 seconds
DEBUG | mythbox.core | db.py | Thread-10 | Line 660 |
select
id,
chanid,
starttime,
inserttime,
type,
cmds,
flags,
status,
statustime,
hostname,
comment,
schedruntime
from
jobqueue
where status = 1 order by schedruntime, id
DEBUG | mythbox.perf | util.py | Thread-9 | Line 334 | TIMER: getTunerStatus took 0.09 seconds
DEBUG | mythbox.perf | util.py | Thread-9 | Line 334 | TIMER: getTunerStatus took 0.00 seconds
DEBUG | mythbox.core | conn.py | Thread-9 | Line 722 | getUpcomingRecordings reply begin= ['0', '1', 'N24 Nachrichten', '', 'Nachrichten und aktuelle Entwicklungen aus Politik, Wirtschaft und Gesellschaft in Deutschland und der Welt sowie das Wetter.', '', '18503', '17503', 'N24', 'N24', '', '0', '0', '1300945260', '1300993140', '0', '0', '0', 'ion330', '1', '0', '0', '1', '-3', '1', '1', '15', '6', '1300945260', '1300993140', '0', '0', 'Default', '0', '', '', '', '1300972179', '0.000000', '', '0', 'Default', '0', '0', 'Default', '1', '2', '0', '0']
DEBUG | mythbox.core | conn.py | Thread-9 | Line 723 | getUpcomingRecordings reply end = ['0', '1', 'N24 Nachrichten', '', 'Nachrichten und aktuelle Entwicklungen aus Politik, Wirtschaft und Gesellschaft in Deutschland und der Welt sowie das Wetter.', '', '18503', '17503', 'N24', 'N24', '', '0', '0', '1300945260', '1300993140', '0', '0', '0', 'ion330', '1', '0', '0', '1', '-3', '1', '1', '15', '6', '1300945260', '1300993140', '0', '0', 'Default', '0', '', '', '', '1300972179', '0.000000', '', '0', 'Default', '0', '0', 'Default', '1', '2', '0', '0']
DEBUG | mythbox.perf | util.py | Thread-9 | Line 334 | TIMER: getUpcomingRecordings took 0.09 seconds
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 254
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 253
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 252
DEBUG | mythbox.ui | home.py | MainThread | Line 65 | lastfocusid = 251
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getChannels took 0.09 seconds
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E26 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E25 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E24 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E23 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E22 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E21 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number S25 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number S24 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number S23 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number S22 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number S21 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE20 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE19 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE18 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE17 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE16 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE15 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE14 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE13 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE12 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE11 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE10 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE9 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE8 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE7 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE6 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE5 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number SE4 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E12 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E11 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E10 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E9 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E8 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E7 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E6 into a number
WARNING | mythbox.core | domain.py | MainThread | Line 188 | Was not able to convert channel number E5 into a number
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTVGuideData took 0.21 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 381 | Rendering....
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18500, number=17500, callsign=SAT 1, tunerId=2, name=SAT 1, icon=/home/mike/.mythtv/channels/sat1.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18502, number=17502, callsign=kabel eins, tunerId=2, name=kabel eins, icon=/home/mike/.mythtv/channels/kabel_eins.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18503, number=17503, callsign=N24, tunerId=2, name=N24, icon=/home/mike/.mythtv/channels/n24.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23000, number=22000, callsign=DMAX, tunerId=2, name=DMAX, icon=/home/mike/.mythtv/channels/dmax.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23002, number=22002, callsign=EUROSPORT, tunerId=2, name=EUROSPORT, icon=/home/mike/.mythtv/channels/eurosport.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23160, number=22160, callsign=euronews, tunerId=2, name=euronews, icon=/home/mike/.mythtv/channels/euronews.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23162, number=22162, callsign=Bloomberg, tunerId=2, name=Bloomberg, icon=/home/mike/.mythtv/channels/bloomberg.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23190, number=22190, callsign=TV5MONDE, tunerId=2, name=TV5MONDE EUROPE, icon=/home/mike/.mythtv/channels/tv5_monde_europe.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23263, number=22263, callsign=SF1, tunerId=2, name=SF1, icon=/home/mike/.mythtv/channels/sf1.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23264, number=22264, callsign=SF2, tunerId=2, name=SF2, icon=/home/mike/.mythtv/channels/sf2.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23266, number=22266, callsign=ORF2E, tunerId=2, name=ORF2E, icon=/home/mike/.mythtv/channels/orf2.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23354, number=22354, callsign=BVN, tunerId=2, name=BVN, icon=/home/mike/.mythtv/channels/bvn.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29006, number=28006, callsign=ZDF, tunerId=2, name=ZDF, icon=/home/mike/.mythtv/channels/zdf_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29007, number=28007, callsign=3sat, tunerId=2, name=3sat, icon=/home/mike/.mythtv/channels/3sat.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29008, number=28008, callsign=KIKA, tunerId=2, name=KIKA, icon=/home/mike/.mythtv/channels/kinderkanal.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29011, number=28011, callsign=ZDFinfokanal, tunerId=2, name=ZDFinfokanal, icon=/home/mike/.mythtv/channels/zdf_info.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29016, number=28016, callsign=ZDFtheaterkanal, tunerId=2, name=ZDFtheaterkanal, icon=/home/mike/.mythtv/channels/zdf_theaterkanal.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29106, number=28106, callsign=Das Erste, tunerId=2, name=Das Erste, icon=/home/mike/.mythtv/channels/ard_das_erste.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29108, number=28108, callsign=hr-fernsehen, tunerId=2, name=hr-fernsehen, icon=/home/mike/.mythtv/channels/hr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29113, number=28113, callsign=SWR Fernsehen BW, tunerId=2, name=SWR Fernsehen BW, icon=/home/mike/.mythtv/channels/swr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29205, number=28205, callsign=rbb Brandenburg, tunerId=2, name=rbb Brandenburg, icon=/home/mike/.mythtv/channels/rbb_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29206, number=28206, callsign=rbb Berlin, tunerId=2, name=rbb Berlin, icon=/home/mike/.mythtv/channels/rbb_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29224, number=28224, callsign=NDR FS MV, tunerId=2, name=NDR FS MV, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29225, number=28225, callsign=NDR FS HH, tunerId=2, name=NDR FS HH, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29226, number=28226, callsign=NDR FS NDS, tunerId=2, name=NDR FS NDS, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29227, number=28227, callsign=NDR FS SH, tunerId=2, name=NDR FS SH, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29231, number=28231, callsign=SWR Fernsehen RP, tunerId=2, name=SWR Fernsehen RP, icon=/home/mike/.mythtv/channels/swr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29487, number=28487, callsign=BR-alpha, tunerId=2, name=BR-alpha, icon=/home/mike/.mythtv/channels/br_alpha.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29721, number=28721, callsign=EinsExtra, tunerId=2, name=EinsExtra, icon=/home/mike/.mythtv/channels/ard_eins_extra.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29722, number=28722, callsign=Einsfestival, tunerId=2, name=Einsfestival, icon=/home/mike/.mythtv/channels/ard_eins_festival.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29723, number=28723, callsign=EinsPlus, tunerId=2, name=EinsPlus, icon=/home/mike/.mythtv/channels/ard_eins_plus.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29724, number=28724, callsign=arte, tunerId=2, name=arte, icon=/home/mike/.mythtv/channels/arte_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29725, number=28725, callsign=Phoenix, tunerId=2, name=Phoenix, icon=/home/mike/.mythtv/channels/phoenix_de.jpg}
DEBUG | mythbox.fanart | fanart.py | Thread-12 | Line 405 | TVDB[4] = Two and a Half Men
WARNING | mythbox.perf | util.py | Thread-12 | Line 331 | TIMER: getPosters took 5.30 seconds
DEBUG | mythbox.cache | filecache.py | Thread-12 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72227-1.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 329 | Adding channel 17502 to front of q
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.thetvdb.com/banners/posters/72227-1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/54e2a5a82e9525b1b47759ae7261c1c5 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 3
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72227-3.jpg
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getNumFreeTuners took 0.01 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTuners took 0.00 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getChannels took 0.00 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getChannels took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 65 | Found tuner 2 to view channel 17503
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f656cddd468a26c0d165ea5b8916b3cd to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 2
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72227-4.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/393958215e1d093c95197046b23cf730 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 1
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getNumFreeTuners took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72227-2.jpg
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTuners took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 65 | Found tuner 2 to view channel 17503
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 250
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/8c0130390a397cdd51d2ba9a9756a928 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-12 | Line 405 | TVDB[4] = Stargate
WARNING | mythbox.perf | util.py | Thread-12 | Line 331 | TIMER: getPosters took 6.22 seconds
DEBUG | mythbox.cache | filecache.py | Thread-12 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72449-3.jpg
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.thetvdb.com/banners/posters/72449-3.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/6480026ed910354b24d95bd27cc09efb to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 3
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72449-2.jpg
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTVGuideData took 0.20 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 381 | Rendering....
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18500, number=17500, callsign=SAT 1, tunerId=2, name=SAT 1, icon=/home/mike/.mythtv/channels/sat1.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18502, number=17502, callsign=kabel eins, tunerId=2, name=kabel eins, icon=/home/mike/.mythtv/channels/kabel_eins.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=18503, number=17503, callsign=N24, tunerId=2, name=N24, icon=/home/mike/.mythtv/channels/n24.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23000, number=22000, callsign=DMAX, tunerId=2, name=DMAX, icon=/home/mike/.mythtv/channels/dmax.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23002, number=22002, callsign=EUROSPORT, tunerId=2, name=EUROSPORT, icon=/home/mike/.mythtv/channels/eurosport.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23160, number=22160, callsign=euronews, tunerId=2, name=euronews, icon=/home/mike/.mythtv/channels/euronews.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23162, number=22162, callsign=Bloomberg, tunerId=2, name=Bloomberg, icon=/home/mike/.mythtv/channels/bloomberg.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23190, number=22190, callsign=TV5MONDE, tunerId=2, name=TV5MONDE EUROPE, icon=/home/mike/.mythtv/channels/tv5_monde_europe.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23263, number=22263, callsign=SF1, tunerId=2, name=SF1, icon=/home/mike/.mythtv/channels/sf1.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23264, number=22264, callsign=SF2, tunerId=2, name=SF2, icon=/home/mike/.mythtv/channels/sf2.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23266, number=22266, callsign=ORF2E, tunerId=2, name=ORF2E, icon=/home/mike/.mythtv/channels/orf2.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=23354, number=22354, callsign=BVN, tunerId=2, name=BVN, icon=/home/mike/.mythtv/channels/bvn.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29006, number=28006, callsign=ZDF, tunerId=2, name=ZDF, icon=/home/mike/.mythtv/channels/zdf_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29007, number=28007, callsign=3sat, tunerId=2, name=3sat, icon=/home/mike/.mythtv/channels/3sat.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29008, number=28008, callsign=KIKA, tunerId=2, name=KIKA, icon=/home/mike/.mythtv/channels/kinderkanal.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29011, number=28011, callsign=ZDFinfokanal, tunerId=2, name=ZDFinfokanal, icon=/home/mike/.mythtv/channels/zdf_info.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29016, number=28016, callsign=ZDFtheaterkanal, tunerId=2, name=ZDFtheaterkanal, icon=/home/mike/.mythtv/channels/zdf_theaterkanal.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29106, number=28106, callsign=Das Erste, tunerId=2, name=Das Erste, icon=/home/mike/.mythtv/channels/ard_das_erste.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29108, number=28108, callsign=hr-fernsehen, tunerId=2, name=hr-fernsehen, icon=/home/mike/.mythtv/channels/hr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29113, number=28113, callsign=SWR Fernsehen BW, tunerId=2, name=SWR Fernsehen BW, icon=/home/mike/.mythtv/channels/swr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29205, number=28205, callsign=rbb Brandenburg, tunerId=2, name=rbb Brandenburg, icon=/home/mike/.mythtv/channels/rbb_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29206, number=28206, callsign=rbb Berlin, tunerId=2, name=rbb Berlin, icon=/home/mike/.mythtv/channels/rbb_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29224, number=28224, callsign=NDR FS MV, tunerId=2, name=NDR FS MV, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29225, number=28225, callsign=NDR FS HH, tunerId=2, name=NDR FS HH, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29226, number=28226, callsign=NDR FS NDS, tunerId=2, name=NDR FS NDS, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29227, number=28227, callsign=NDR FS SH, tunerId=2, name=NDR FS SH, icon=/home/mike/.mythtv/channels/ndr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29231, number=28231, callsign=SWR Fernsehen RP, tunerId=2, name=SWR Fernsehen RP, icon=/home/mike/.mythtv/channels/swr_fernsehen.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29487, number=28487, callsign=BR-alpha, tunerId=2, name=BR-alpha, icon=/home/mike/.mythtv/channels/br_alpha.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29721, number=28721, callsign=EinsExtra, tunerId=2, name=EinsExtra, icon=/home/mike/.mythtv/channels/ard_eins_extra.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29722, number=28722, callsign=Einsfestival, tunerId=2, name=Einsfestival, icon=/home/mike/.mythtv/channels/ard_eins_festival.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29723, number=28723, callsign=EinsPlus, tunerId=2, name=EinsPlus, icon=/home/mike/.mythtv/channels/ard_eins_plus.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29724, number=28724, callsign=arte, tunerId=2, name=arte, icon=/home/mike/.mythtv/channels/arte_de.jpg}
DEBUG | mythbox.cache | filecache.py | MainThread | Line 104 | Cache HIT Channel {id=29725, number=28725, callsign=Phoenix, tunerId=2, name=Phoenix, icon=/home/mike/.mythtv/channels/phoenix_de.jpg}
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Dauerwerbesendung" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://i.ytimg.com/vi/GRy2RwylEFk/0.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Mode & Accessoires" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 250
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.thelabelfinder.com/imaging/other/91341/151681/spazio-mode-accessoires.png
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 250
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Ratgeber Gemeinde" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.45 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://ecx.images-amazon.com/images/I/41sC9TbZktL._SL500_AA300_.jpg
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getNumFreeTuners took 0.00 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTuners took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 65 | Found tuner 2 to view channel 17503
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Jünemanns Börse" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.49 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://farm2.static.flickr.com/1197/1426697222_a5a364175b.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4daa553c21f8bfb4a4981c6d67c48d1c to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 14
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72449-4.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Goshenit-Silberhalskette" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.traumsteinshop.de/images/product_images/thumbnail_images/6558_0.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Alles zum Kochen" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.50 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://farm4.static.flickr.com/3552/3332578855_2ea990e5c6.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "He-Man - Colossor erwacht" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.48 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://ecx.images-amazon.com/images/I/51GPRKEVZWL.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Die Oprah Winfrey Show" with error "Show-name search returned zero results (cannot find show on TVDB)"
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 0.52 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://paperbrief.com/wp-content/uploads/2011/01/oprah-winfrey-show-over-decades.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/23423cd58c1024fcd88e4abe32446e9d to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 29
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.thetvdb.com/banners/posters/72449-1.jpg
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Sabine Krause" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 0.60 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 314 | FOCUS 600
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getNumFreeTuners took 0.00 seconds
DEBUG | mythbox.perf | util.py | MainThread | Line 334 | TIMER: getTuners took 0.00 seconds
DEBUG | mythbox.ui | livetv.py | MainThread | Line 65 | Found tuner 2 to view channel 17502
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.md-net.org/uploads/pics/sabine_krause.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Represent" with error "Show-name search returned zero results (cannot find show on TVDB)"
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 0.66 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.nataliedee.com/011109/represent.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/9b84f6de7b9bd1c46a64218b6342fffd to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 40
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://i.ytimg.com/vi/GRy2RwylEFk/0.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/8b4a562ab473ae6eef9f0075de3f3a15 to results of size 1
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "The Week in the Americas" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 39
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.47 seconds
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://i.ytimg.com/vi/maCzquyyd8k/0.jpg
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/3bb17378d16a45761120240550c2addf to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 38
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.hio-records.de/rekorder/rekorder_ani.gif
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.france24.com/en/files/imagecache/france24_special_169_medium/edition/ENMG%20THE%20WEEK%20IN%20THE%20AME%2012.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/05893067be79dc2fb93a450b872e0634 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 37
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://c2.ac-images.myspacecdn.com/images02/126/s_57d60bb9f00f4cd09716c9cb3a7c8901.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f4da702f0467eb1f060c5514d28dbf64 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 36
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.thelabelfinder.com/imaging/other/91341/151681/spazio-mode-accessoires.png
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2080355a6e9785570a5f563e3eb0a318 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 35
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://image1.trefle.com/images/vetements-occasion/full/future-cat-big-perf-f-mode-et-accessoires-chaussures-homme-chaussures-s.23641864-79375820.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a3b846077111a8f80e3f93283eabc51c to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 34
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://image1.trefle.com/images/vetements-occasion/full/sprint-sister-leather-mode-et-accessoires-chaussures-femme-chaussures-s.23641901-79375857.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f3bfa4049f12c9c9d29a22eb6d63adf4 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 33
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://ecx.images-amazon.com/images/I/51YD28NZ9JL._SL500_AA300_.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/64593ddd8ba4479897818e65e074004d to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 32
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://ecx.images-amazon.com/images/I/41sC9TbZktL._SL500_AA300_.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/dc76f387e6b88a5969ede0267d481b2c to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 31
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.ekir.de/ratgeber/bilder/rg_dembek03.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a0dd48d5c5ecb36d3505903a90eeff64 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 30
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.ekir.de/ratgeber/bilder/gemeindebrief_tv_rdax_106x150.png
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/81303815b4b3dbcb8b8c72681a3032e3 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 29
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://img3.promobil.de/image-articleOpeningImage-6f8b65dd-18352.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/03fa97d2b2a0bde970848507e6b90330 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 28
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://farm2.static.flickr.com/1197/1426697222_a5a364175b.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/465a16e9abeea85b224c65b3a92558ed to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 27
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://farm1.static.flickr.com/219/501220884_4b687dcf54.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a1dfc460755a9d9713d0aa390f325c65 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 26
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://c2.ac-images.myspacecdn.com/images02/7/s_f8fd6a958d6b43ee9cc9196f61b8d32d.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5f9db6914463622645fcd8f1df468f37 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 25
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://farm2.static.flickr.com/1173/751585121_9e1866b606.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/e7ec730bc926101e2a9c6df295dd1fed to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 28
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.traumsteinshop.de/images/product_images/thumbnail_images/6558_0.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/b9363d59120a871a952ce000c2572e9a to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 27
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.juwelo.tv/images/juwelo_logo.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2340ae67f9aa5e015dc67ae6bb6adb05 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 26
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.calgaro.de/bilder/artbild/nymphenburg/a-19-320.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/328160315d18734bfd97c5a936822455 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 25
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.calgaro.de/bilder/artbild/nymphenburg/a-19-270.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4e9bea190d2dc123f996b426e270393c to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 24
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://farm4.static.flickr.com/3552/3332578855_2ea990e5c6.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/7389a098a2e9d101185f8aafd4b07724 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 23
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://lh4.ggpht.com/_4QCXgWdxU4s/R4Jbi24ivDI/AAAAAAAAAtI/EzGWyjnd8ck/CIMG2620.JPG
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "News" with error "'poster'"
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 2.80 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/bee825c660f3d217176c02c63a0526bc to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 22
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://i220.photobucket.com/albums/dd235/Tibtier/IMG_1319.jpg
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.villageofmidlothian.net/News/news_.gif
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/778190851f852d15a36b6a0f152c8ed3 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 21
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.stockphotopro.com/photo-thumbs-2/stockphotopro_88964781DQC_no_title.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Uk Sensations" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.45 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://assets3.voucherhub.com/snapshots/large/d/afterdark-sensations.co.uk.jpg?1280324142
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Look" with error "'poster'"
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 2.29 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://goop.com/newsletter/29/en/look2.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/7b17adbda0c4bb82d79f7b214e3c6ab2 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 32
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://ecx.images-amazon.com/images/I/51GPRKEVZWL.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4b17ba95a64f18a9d8064aad7db2ebaf to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 31
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.zeichentrickserien.de/dvd/heman2.gif
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Alpenwelten - Blick in die Heimat" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/8f6050f8edc5886014341ae50da89791 to results of size 2
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.47 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 30
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www2.unitymedia.de/images/epg/18.01.2011/small/41104825_big.jpg
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2df69cfd90d0948f46d92b8bd64115e4 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 29
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.planeteternia.de/grafiken/userfiles/184425.jpg
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.xrel.to/nfo-render.html?nfo=267246&secret=96e95772&font=2&uniq=c90fd3b2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/6a8704a92385f86389bcb15edf21681d to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 28
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://paperbrief.com/wp-content/uploads/2011/01/oprah-winfrey-show-over-decades.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/3300de37fe9a32c05b8249bda0190847 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 27
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://theoprahwinfreyshow.files.wordpress.com/2009/01/the-oprah-winfrey-show-20th-anniversary-collection.jpg?w=244&h=348
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2a04324ecb0a6d182c9be45cc55559de to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 26
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.product-reviews.net/wp-content/userimages/2007/09/oprah-winfrey-show.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/917d5f85c813c405ea00bac85192a6d0 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 25
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.aceshowbiz.com/images/news/00028987.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/177086a06031a1fb05a6b60b5f2133af to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 24
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.md-net.org/uploads/pics/sabine_krause.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/fccfb86afccfa98914d27675dd64de4f to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 23
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.hw-druck.de/files/sabine.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/adce6ba10c651756d6839efe6e6f33a6 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 22
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.enni.de/website/content/Medien/Mitarbeiter/Sabine_Krause.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5f7d31ff1c3d4f90831a35282a5d0eb8 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 21
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.autohaus-gitter.de/uploads/pics/Krause_Andreas_01.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/d520f5acf18553e29e4402810a41b58b to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 20
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.nataliedee.com/011109/represent.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/18aa6eddbbe4b5467fb7a44d1eb44e6a to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 19
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://rlv.zcache.com/i_represent_da_real_hip_hop_tshirt-p235107251084073305qm73_400.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "LADY VOUS ECOUTE - en DIRECT" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/21189fcf8eed230db3acc09be8dfb627 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 22
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://media.konigi.com/design/represent-1.jpg
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://static2.dmcdn.net/static/video/644/440/18044446:jpeg_preview_medium.jpg?20100802075308
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/1972ab262fca1e9ba570076216b4834e to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 21
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS https://www.brooklynmuseum.org/eascfa/feminist_art_base/archive/images/262.350.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Top Mix" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.49 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.iowaind.com/Manufacturing-Equipment-/Lathes-/3-000-gallon-carbon-steel-closed-top-mix-tank-2947-photo_example-1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/c9d8342406231685be1560b8fbedef65 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 24
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.france24.com/en/files/imagecache/france24_special_169_medium/edition/ENMG%20THE%20WEEK%20IN%20THE%20AME%2012.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/6ca6767ee6569dead6d63c119f41ba3b to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 23
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.france24.com/en/files/imagecache/france24_special_169_medium/edition/ENMG%20THE%20WEEK%20IN%20THE%20AME%2010.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/9ab544b0cd9e0b0381c24d4d04d1db65 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 22
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://blogs.ft.com/beyond-brics/files/2010/11/latin-america-chart-of-the-week1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5dd792f608acb108ad938861763fa3fd to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 25
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.cosmoworlds.com/Graphics/europe_style_portal/miami_fashion_week_of_the_americas.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Haber" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.45 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://nobelprize.org/nobel_prizes/chemistry/laureates/1918/haber.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Híradó - 14:00" with error "Show-name search returned zero results (cannot find show on TVDB)"
WARNING | mythbox.perf | util.py | Thread-13 | Line 331 | TIMER: getPosters took 0.51 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS https://www.muenzauktion.com/kaumeier/pic/21420692.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "World fashion shows women" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://cache3.asset-cache.net/xc/87237070.jpg?v=1&c=IWSAsset&k=2&d=77BFBA49EF878921CC759DF4EBAC47D0E0A41BA225D16EDAF65E7DB5ADBA3B7D51A99790A6766D23E30A760B0D811297
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Híróra" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://lh4.ggpht.com/_DD0UA_e4F1Q/Rpo9naIUIyI/AAAAAAAAArk/5EquX9Kv75Y/P1010010.JPG
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Football:Gabès vis Club africain" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.47 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://betaimages.filgoal.com/images//NewsPics/Large/168321671.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5739d84a1a95ec41dc5f47665eecf351 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 40
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.villageofmidlothian.net/News/news_.gif
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/1654e18e5f0dd96d1c61d3546a15eab5 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 39
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://uarc.ucsc.edu/images/head-news.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5ed284e288999968692fcab4526d79f8 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 38
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://czechfolks.com/wp-content/uploads/2009/02/extra-news.jpg
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "I.Galicia Noticias Maña" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.47 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://farm4.static.flickr.com/3122/3135095563_74a951cc7b.jpg?v=0
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "Kraichgau TV" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.47 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/754bcbb5269f8746125bb71a9d146d33 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 45
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.nyu.edu/clubs/hsc/news_logo.png
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://www.athi.de/wp-content/uploads/2009/09/kraichgau-tv.PNG
WARNING | mythbox.fanart | fanart.py | Thread-13 | Line 407 | TVDB errored out on "SiB TV" with error "Show-name search returned zero results (cannot find show on TVDB)"
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.46 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.perf | util.py | Thread-13 | Line 334 | TIMER: getPosters took 0.00 seconds
DEBUG | mythbox.cache | filecache.py | Thread-13 | Line 85 | Cache MISS http://i2.ytimg.com/vi/L_VSav1NGMY/0.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/82c011e26d383c0bd192cd708bbfb410 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 52
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://assets3.voucherhub.com/snapshots/large/d/afterdark-sensations.co.uk.jpg?1280324142
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/ccfe2331249d0ccc080c8f570d9b5e2c to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 51
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.freestuff.me/wp-content/uploads/2010/09/free-felix-sensations-116x116.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2403533586bce43f7da96b7885b33a51 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 50
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://assets0.voucherhub.com/snapshots/tiny/d/afterdark-sensations.co.uk.jpg?1280326799
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/7775a704627f6bc2b06b404feb95bcb0 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 49
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.toxicshock.tv/news/wp-content/uploads/uk_pendulum_band.jpg
ERROR | mythbox.fanart | fanart.py | Thread-1 | Line 326 | [Errno socket error] timed out
Traceback (most recent call last):
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/fanart.py", line 324, in tryToCache
filepath = self.httpCache.get(poster)
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/filecache.py", line 90, in get
self.resolver.store(fileUrl, filepath)
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/filecache.py", line 52, in store
filename, headers = urllib.urlretrieve(fileUrl, dest)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 89, in urlretrieve
return _urlopener.retrieve(url, filename, reporthook, data)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 222, in retrieve
fp = self.open(url, data)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 190, in open
return getattr(self, name)(url)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 322, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 335, in http_error
result = method(url, fp, errcode, errmsg, headers)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 612, in http_error_301
return self.http_error_302(url, fp, errcode, errmsg, headers, data)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 593, in http_error_302
data)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 608, in redirect_internal
return self.open(newurl)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 190, in open
return getattr(self, name)(url)
File "/usr/lib/xbmc/system/python/python24.zip/urllib.py", line 313, in open_http
h.endheaders()
File "/usr/lib/xbmc/system/python/python24.zip/httplib.py", line 798, in endheaders
self._send_output()
File "/usr/lib/xbmc/system/python/python24.zip/httplib.py", line 679, in _send_output
self.send(msg)
File "/usr/lib/xbmc/system/python/python24.zip/httplib.py", line 646, in send
self.connect()
File "/usr/lib/xbmc/system/python/python24.zip/httplib.py", line 630, in connect
raise socket.error, msg
IOError: [Errno socket error] timed out
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 48
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://goop.com/newsletter/29/en/look2.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/24625fe09e9cc7392cb3611ae0ee89bb to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 47
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://goop.com/newsletter/29/en/look1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f4847c3e4b1d3964ff7a266b87258a7a to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 46
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.teenvogue.com/style/blogs/fashion/selena-gomez-cover-look-less-thumb-500x330.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/7223843f3ed18eda33aeb28b2d5de9aa to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 45
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://media-cdn.tripadvisor.com/media/photo-s/00/17/58/13/look-at-the-carpet-awesome.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a1ffb4896b91cc136a367f4a62d8b2ba to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 44
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.xrel.to/nfo-render.html?nfo=267246&secret=96e95772&font=2&uniq=c90fd3b2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/0a72923faa47255081785de1516d8b27 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 43
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://thumbs.onlinetvrecorder.com/Alpenwelten_Blick_in_die_Heimat_11.02.02_08-45_stv_50_TVOON_DE____2.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/fd182ffa7908ebe60e511b9b36708587 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 42
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://thumbs.onlinetvrecorder.com/Alpenwelten_Blick_in_die_Heimat_11.02.02_08-45_stv_50_TVOON_DE____1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/420a51bd28fbf57e8050a352e18c235b to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 41
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://your-imag.es/i/a6eg3hsa1751231773-misfits-alpbidh_screen_jpg.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2f737dfff75d771c631821f168439340 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 40
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://static2.dmcdn.net/static/video/644/440/18044446:jpeg_preview_medium.jpg?20100802075308
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/af254444d86c9b689dae1f88f1e07969 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 39
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://static2.dmcdn.net/static/video/105/416/22614501:jpeg_preview_medium.jpg?20100805175956
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/da075fad052febd74520909696385df5 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 38
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.facebook.com/profile/pic.php?oid=AQBU6jL-XA6bQp0zYKFbVHAPE-xaJtdCd6cg36jMMW3aSkGDKgwWMyazJnSHliI8H-4&size=normal&usedef=1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a3b5f10717990d39f38b7742b1525055 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 37
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://c1.ac-images.myspacecdn.com/images02/148/l_ffd22b12bf494d629c46217a82b80c48.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/65a94dba94ede512afb31d3565407268 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 36
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.iowaind.com/Manufacturing-Equipment-/Lathes-/3-000-gallon-carbon-steel-closed-top-mix-tank-2947-photo_example-1.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/84420b3cd40ff5878d4c49575f0f26b5 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 35
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.iowaind.com/Manufacturing-Equipment-/Lathes-/3-000-gallon-carbon-steel-closed-top-mix-tank-2947-photo_example-2.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/39a92d11aa5cd3c9216b31ec8bf785dd to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 34
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://upload.wikimedia.org/wikipedia/commons/e/e8/Dalieda_de_San_Francisco_-_Dahlia_Topmix_Purple_01.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f383248bc712add49d7d125d42c79e1e to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 33
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://resources.shopstyle.com/sim/12/74/1274f8dd08c346954f86db5ff84c93d9/havaianas-figleaves-top-mix-flip-flop.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4da8234432d1e4edb75eafc8e9e397c8 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 32
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://nobelprize.org/nobel_prizes/chemistry/laureates/1918/haber.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/fbb6bbf80a3df849de9521d52f22f726 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 31
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.tividizi.com/vidresim/star-ana-haber.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/1f5fbba99a7d67efee04604d8d877c0e to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 30
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://img.over-blog.com/500x383/1/36/61/10//haber2.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2c95dd3716d5200f9fb50f74b96d1ac9 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 29
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.danielcharles.us/haberweb/clara.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/e417954d19099026205b571397ccd38e to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 28
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT https://www.muenzauktion.com/kaumeier/pic/21420692.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f387f161a1b6860fb82129d7183ad897 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 27
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://upload.wikimedia.org/wikipedia/commons/5/5f/Bouzov,_hrad_(15).jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f00720eedc7b420f6966e2b53a099112 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 26
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://62.15.226.148/fot/2008/03/03/7686034.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/beda4bb162f9db2cc8a95287fffc7b6b to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 25
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://lh4.ggpht.com/_tqdKsXVEJuo/Sghq4s42-3E/AAAAAAAAAa4/a_-6oIqKdag/PustyHrad1842009.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/3b3a906182d57a050e959bbabc6311fb to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 24
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://cache3.asset-cache.net/xc/87237070.jpg?v=1&c=IWSAsset&k=2&d=77BFBA49EF878921CC759DF4EBAC47D0E0A41BA225D16EDAF65E7DB5ADBA3B7D51A99790A6766D23E30A760B0D811297
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/9758a0fc8c9e3bc5ab0be004766760cb to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 23
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://cache3.asset-cache.net/xc/87237132.jpg?v=1&c=IWSAsset&k=2&d=77BFBA49EF878921CC759DF4EBAC47D0DEF0D92563626B2CF65E7DB5ADBA3B7D96B67704E610D7A3E30A760B0D811297
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/75316a4ebc30a4a1d91936ca76a8520a to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 22
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://cache1.asset-cache.net/xc/85270747.jpg?v=1&c=IWSAsset&k=2&d=77BFBA49EF8789215ABF3343C02EA548085E8C7263C9AEC8E3ACEC24928E6593EBD6849B894F06E8E30A760B0D811297
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5a885c0dffe8556887e312ba5ecbe2d3 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 21
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://cache4.asset-cache.net/xc/85307915.jpg?v=1&c=IWSAsset&k=2&d=77BFBA49EF8789215ABF3343C02EA5485E137BFF6A0D3774811A053D7FAB2BE507E0678139D32ACCE30A760B0D811297
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2e44f0ee6b518b09c23895d108e3f904 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 20
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://lh4.ggpht.com/_DD0UA_e4F1Q/Rpo9naIUIyI/AAAAAAAAArk/5EquX9Kv75Y/P1010010.JPG
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f703eaf8c2afad5fc0b6dbf1199ae355 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 19
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://image20.webshots.com/21/5/29/72/204652972sVKQNP_fs.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5f35eb12423975476523ecb004f50034 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 18
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://image18.webshots.com/19/4/80/14/204648014NgzmbI_fs.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/5f81e964e7afb5c4c2f1526393a520ca to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 17
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://image18.webshots.com/19/4/54/42/204645442yJjrTy_fs.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/396c93244753434e5ca0100a152f3364 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 16
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://betaimages.filgoal.com/images//NewsPics/Large/168321671.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/1cdffde9b101b616848aed1b85c9af83 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 15
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://profile.ak.fbcdn.net/hprofile-ak-snc4/71059_254581414816_3209420_s.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/a4863c5b4ca5c579c7f72142a8661afa to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 14
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://profile.ak.fbcdn.net/hprofile-ak-snc4/174817_149500835101771_2602107_s.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/91b04e29fab3b9b1829f177115f5442d to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 13
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://profile.ak.fbcdn.net/hprofile-ak-snc4/187798_132598516809343_712884_s.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/0e5a844f62b347e8608ab53fd5bda298 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 12
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://farm4.static.flickr.com/3122/3135095563_74a951cc7b.jpg?v=0
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4e8cbb64aef289d92a2611e223fa229e to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 11
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://sp3.fotolog.com/photo/19/33/79/aletheia_nereida/1230128795865_f.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/37793a59fee6548b432496d8d2de9493 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 10
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.alphagalileo.org/AssetViewer.aspx?AssetId=40457&CultureCode=en&Thumbnail=True
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/27b3d1909f2d649e7e2c7210f1b21ccf to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 9
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://elviajero.elpais.com/recorte/20070929elpviavje_2/LCO340/Ies/Ricardo_Darin.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/2b1f5cac83810110090c3d84dc341587 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 8
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://www.athi.de/wp-content/uploads/2009/09/kraichgau-tv.PNG
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/f8eddbd9aba6e18eb9fb3daec6bff05d to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 7
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.tvforst-triathlon.de/webnews/bilder/2010-bernd/10-04-KraichgauTV-006.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/def89e34162f65dee556f22e30cce628 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 6
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.happysix.de/images/kraichgau-tv.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4fc8611c8c0ceb846169becd9cda2e46 to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 5
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://i.ytimg.com/vi/K7RPpvrJsCo/0.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/0cd36f734b28a485eecafadbe50dcc43 to results of size 4
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 4
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 104 | Cache HIT http://i2.ytimg.com/vi/L_VSav1NGMY/0.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/4f92f04d66e863a76505171e5afa64e1 to results of size 1
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 3
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://farm1.static.flickr.com/74/174320841_5aff70a8a7.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/eeb40356aea73c777331412b811c1f68 to results of size 2
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 2
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://thehandlproject.files.wordpress.com/2011/01/the-sib-tv-logo-new-master.jpg?w=165&h=125
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/7d65455d675d9bea69ad3c7a6dfb94af to results of size 3
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 281 | Work queue size: 1
DEBUG | mythbox.cache | filecache.py | Thread-1 | Line 85 | Cache MISS http://www.sexy1000club.com/files/THE%20SIB%20tv%20logo%20new%20master.jpg
DEBUG | mythbox.fanart | fanart.py | Thread-1 | Line 287 | Adding /home/mike/.xbmc/userdata/addon_data/script.mythbox/cache/http/69416d9bc67c8e6624f96c85537f1c41 to results of size 4
ERROR | mythbox.core | util.py | MainThread | Line 401 | (<class exceptions.SystemExit at 0x36596a0>, <exceptions.SystemExit instance at 0x7ff3d0276dc0>, <traceback object at 0x7ff3d01b62f0>)
ERROR | mythbox.core | util.py | MainThread | Line 402 | CATCHALL_UI: Caught <type 'instance'> exception on method onClick
Traceback (most recent call last):
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/util.py", line 399, in catchall_ui
return func(*args, **kw)
File "<string>", line 1, in <lambda>
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/util.py", line 212, in lirc_hack
return func(*args, **kwargs)
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/ui/home.py", line 149, in onClick
self.dispatcher[controlId]()
File "/home/mike/.xbmc/addons/script.mythbox/resources/src/mythbox/ui/home.py", line 253, in goWatchTv
LiveTvWindow('mythbox_livetv.xml', self.platform.getScriptDir(), **self.dependencies).doModal()
SystemExit
|
LG
Michael
|