1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000 | Oct 25 18:21:23 Mikkel-Linux ntp[1725]: ...done.
Oct 25 18:21:23 Mikkel-Linux systemd[1]: Stopped LSB: Start NTP daemon.
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.446551] snd_hda_intel 0000:00:1b.0: Codec #3 probe error; disabling it...
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459894] sound hdaudioC0D0: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459896] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459897] sound hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459898] sound hdaudioC0D0: mono: mono_out=0x0
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459898] sound hdaudioC0D0: dig-out=0x11/0x1e
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459899] sound hdaudioC0D0: inputs:
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459901] sound hdaudioC0D0: Front Mic=0x19
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459902] sound hdaudioC0D0: Rear Mic=0x18
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.459903] sound hdaudioC0D0: Line=0x1a
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471382] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471445] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471507] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input20
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471572] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input21
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471632] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input22
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471685] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input23
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471734] input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input24
Oct 25 18:21:24 Mikkel-Linux kernel: [ 7.471793] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input25
Oct 25 18:21:24 Mikkel-Linux teamviewerd[826]: ....
Oct 25 18:21:24 Mikkel-Linux systemd[1]: Started LSB: TeamViewer remote control daemon.
Oct 25 18:21:24 Mikkel-Linux avahi-daemon[824]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::f66d:4ff:feae:10fe.
Oct 25 18:21:24 Mikkel-Linux avahi-daemon[824]: New relevant interface eth0.IPv6 for mDNS.
Oct 25 18:21:24 Mikkel-Linux avahi-daemon[824]: Registering new address record for fe80::f66d:4ff:feae:10fe on eth0.*.
Oct 25 18:21:28 Mikkel-Linux NetworkManager[827]: <info> startup complete
Oct 25 18:21:28 Mikkel-Linux systemd[1]: Started Network Manager Wait Online.
Oct 25 18:21:28 Mikkel-Linux systemd[1]: Reached target Network is Online.
Oct 25 18:21:28 Mikkel-Linux systemd[1]: Starting Network is Online.
Oct 25 18:21:28 Mikkel-Linux systemd[1]: Mounting /media/nas...
Oct 25 18:21:28 Mikkel-Linux kernel: [ 12.106434] FS-Cache: Loaded
Oct 25 18:21:28 Mikkel-Linux kernel: [ 12.114752] FS-Cache: Netfs 'nfs' registered for caching
Oct 25 18:21:28 Mikkel-Linux kernel: [ 12.121031] NFS: Registering the id_resolver key type
Oct 25 18:21:28 Mikkel-Linux kernel: [ 12.121037] Key type id_resolver registered
Oct 25 18:21:28 Mikkel-Linux kernel: [ 12.121038] Key type id_legacy registered
Oct 25 18:21:29 Mikkel-Linux ntpdate[1734]: 80.161.186.49 rate limit response from server.
Oct 25 18:21:30 Mikkel-Linux NetworkManager[827]: <info> WiFi hardware radio set enabled
Oct 25 18:21:30 Mikkel-Linux NetworkManager[827]: <info> WWAN hardware radio set enabled
Oct 25 18:21:33 Mikkel-Linux ntpdate[1734]: adjust time server 217.198.219.102 offset -0.165091 sec
Oct 25 18:21:33 Mikkel-Linux systemd[1]: Starting LSB: Start NTP daemon...
Oct 25 18:21:33 Mikkel-Linux ntp[1820]: * Starting NTP server ntpd
Oct 25 18:21:33 Mikkel-Linux ntpd[1828]: ntpd 4.2.6p5@1.2349-o Mon Apr 13 17:00:14 UTC 2015 (1)
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: proto: precision = 0.103 usec
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
Oct 25 18:21:33 Mikkel-Linux ntp[1820]: ...done.
Oct 25 18:21:33 Mikkel-Linux systemd[1]: Started LSB: Start NTP daemon.
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen and drop on 1 v6wildcard :: UDP 123
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen normally on 2 lo 127.0.0.1 UDP 123
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen normally on 3 eth0 192.168.1.12 UDP 123
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen normally on 4 lo ::1 UDP 123
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listen normally on 5 eth0 fe80::f66d:4ff:feae:10fe UDP 123
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: peers refreshed
Oct 25 18:21:33 Mikkel-Linux ntpd[1829]: Listening on routing socket on fd #22 for interface updates
Oct 25 18:21:38 Mikkel-Linux ModemManager[805]: <info> Creating modem with plugin 'Generic' and '1' ports
Oct 25 18:21:38 Mikkel-Linux ModemManager[805]: <warn> Could not grab port (tty/ttyACM0): 'Cannot add port 'tty/ttyACM0', unhandled serial type'
Oct 25 18:21:38 Mikkel-Linux ModemManager[805]: <warn> Couldn't create modem for device at '/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.8': Failed to find primary AT port
Oct 25 18:21:52 Mikkel-Linux ntpd_intres[1008]: parent died before we finished, exiting
Oct 25 18:22:58 Mikkel-Linux systemd[1]: media-nas.mount mounting timed out. Stopping.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Mounted /media/nas.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Reached target Remote File Systems.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting Remote File Systems.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: disk temperature monitoring daemon...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: daemon to balance interrupts for SMP systems...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Automounts filesystems on demand...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: automatic crash report generation...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Speech Dispatcher...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Start or stop the inetd daemon....
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting Permit User Sessions...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Apache2 web server...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Tool to automatically collect and submit kernel crash signatures...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: CrashPlan Engine...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Start the GNUstep distributed object mapper...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Cleans up any mess left by 0dns-up...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Start the PulseAudio sound server...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting LSB: Folding@home Client...
Oct 25 18:22:58 Mikkel-Linux speech-dispatcher[1840]: * speech-dispatcher disabled; edit /etc/default/speech-dispatcher
Oct 25 18:22:58 Mikkel-Linux apache2[1844]: * Starting web server apache2
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: disk temperature monitoring daemon.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Oct 25 18:22:58 Mikkel-Linux gdomap[1851]: * GNUstep distributed object mapper disabled, see /etc/default/gdomap
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Speech Dispatcher.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Start or stop the inetd daemon..
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started Permit User Sessions.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Start the GNUstep distributed object mapper.
Oct 25 18:22:58 Mikkel-Linux irqbalance[1835]: * Starting SMP IRQ Balancer: irqbalance
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Cleans up any mess left by 0dns-up.
Oct 25 18:22:58 Mikkel-Linux openbsd-inetd[1841]: * Not starting internet superserver: no services enabled
Oct 25 18:22:58 Mikkel-Linux autofs[1837]: * Starting automount...
Oct 25 18:22:58 Mikkel-Linux dns-clean[1855]: * Restoring resolver state...
Oct 25 18:22:58 Mikkel-Linux dns-clean[1855]: ...done.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Start the PulseAudio sound server.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Unit media-nas.mount entered failed state.
Oct 25 18:22:58 Mikkel-Linux apport[1838]: * Starting automatic crash report generation: apport
Oct 25 18:22:58 Mikkel-Linux apport[1838]: ...done.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: automatic crash report generation.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
Oct 25 18:22:58 Mikkel-Linux irqbalance[1835]: ...done.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Started LSB: Tool to automatically collect and submit kernel crash signatures.
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting Wait for Plymouth Boot Screen to Quit...
Oct 25 18:22:58 Mikkel-Linux systemd[1]: Starting Light Display Manager...
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Received SIGRTMIN+21 from PID 349 (plymouthd).
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started Wait for Plymouth Boot Screen to Quit.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started Light Display Manager.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started Getty on tty1.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Starting Getty on tty1...
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Reached target Login Prompts.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Starting Login Prompts.
Oct 25 18:22:59 Mikkel-Linux nvidia-persistenced: Started (1970)
Oct 25 18:22:59 Mikkel-Linux apache2[1844]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
Oct 25 18:22:59 Mikkel-Linux crashplan[1848]: Starting CrashPlan Engine ... Using standard startup
Oct 25 18:22:59 Mikkel-Linux crashplan[1848]: OK
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started LSB: CrashPlan Engine.
Oct 25 18:22:59 Mikkel-Linux autofs[1837]: ...done.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started LSB: Automounts filesystems on demand.
Oct 25 18:22:59 Mikkel-Linux kernel: [ 102.998833] nvidia_uvm: Loaded the UVM driver, major device number 246
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started ACPI event daemon.
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Starting ACPI event daemon...
Oct 25 18:22:59 Mikkel-Linux FAHClient[1886]: Starting fahclient ... OK
Oct 25 18:22:59 Mikkel-Linux systemd[1]: Started LSB: Folding@home Client.
Oct 25 18:23:00 Mikkel-Linux apache2[1844]: *
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started LSB: Apache2 web server.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Reached target Multi-User System.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting Multi-User System.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Reached target Graphical Interface.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting Graphical Interface.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting Stop ureadahead data collection 45s after completed startup.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting Update UTMP about System Runlevel Changes...
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started Update UTMP about System Runlevel Changes.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Startup finished in 1.766s (kernel) + 1min 41.610s (userspace) = 1min 43.376s.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Created slice user-123.slice.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting user-123.slice.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting User Manager for UID 123...
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started Session c1 of user lightdm.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting Session c1 of user lightdm.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Reached target Paths.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Starting Paths.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Reached target Timers.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Starting Timers.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Reached target Sockets.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Starting Sockets.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Reached target Basic System.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Starting Basic System.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Reached target Default.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Startup finished in 10ms.
Oct 25 18:23:00 Mikkel-Linux systemd[2048]: Starting Default.
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started User Manager for UID 123.
Oct 25 18:23:00 Mikkel-Linux org.a11y.atspi.Registry[2081]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Oct 25 18:23:00 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Oct 25 18:23:00 Mikkel-Linux org.gnome.ScreenSaver[2060]: ** (gnome-screensaver:2107): WARNING **: Couldn't get presence status: The name org.gnome.SessionManager was not provided by any .service files
Oct 25 18:23:00 Mikkel-Linux acpid: starting up with netlink and the input layer
Oct 25 18:23:00 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 25 18:23:00 Mikkel-Linux acpid: 9 rules loaded
Oct 25 18:23:00 Mikkel-Linux acpid: waiting for events: event logging is off
Oct 25 18:23:00 Mikkel-Linux acpid: client connected from 1963[0:0]
Oct 25 18:23:00 Mikkel-Linux acpid: 1 client rule loaded
Oct 25 18:23:00 Mikkel-Linux systemd[1]: Started RealtimeKit Scheduling Policy Service.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Successfully called chroot.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Successfully dropped privileges.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Successfully limited resources.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Running.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Watchdog thread running.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Canary thread running.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2139 of process 2139 (n/a) owned by '123' high priority at nice level -11.
Oct 25 18:23:00 Mikkel-Linux rtkit-daemon[2140]: Supervising 1 threads of 1 processes of 1 users.
Oct 25 18:23:02 Mikkel-Linux rtkit-daemon[2140]: Supervising 1 threads of 1 processes of 1 users.
Oct 25 18:23:02 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2224 of process 2139 (n/a) owned by '123' RT at priority 5.
Oct 25 18:23:02 Mikkel-Linux rtkit-daemon[2140]: Supervising 2 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 2 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2225 of process 2139 (n/a) owned by '123' RT at priority 5.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 3 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 3 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2226 of process 2139 (n/a) owned by '123' RT at priority 5.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 4 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux pulseaudio[2139]: [pulseaudio] sink.c: Default and alternate sample rates are the same.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 4 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2227 of process 2139 (n/a) owned by '123' RT at priority 5.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 5 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux pulseaudio[2139]: [pulseaudio] source.c: Default and alternate sample rates are the same.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 5 threads of 1 processes of 1 users.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2228 of process 2139 (n/a) owned by '123' RT at priority 5.
Oct 25 18:23:03 Mikkel-Linux rtkit-daemon[2140]: Supervising 6 threads of 1 processes of 1 users.
Oct 25 18:23:26 Mikkel-Linux org.gnome.ScreenSaver[2060]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Oct 25 18:23:26 Mikkel-Linux org.gtk.vfs.Daemon[2060]: A connection to the bus can't be made
Oct 25 18:23:26 Mikkel-Linux org.gtk.vfs.Daemon[2060]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Oct 25 18:23:26 Mikkel-Linux ca.desrt.dconf[2060]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Oct 25 18:23:26 Mikkel-Linux org.a11y.atspi.Registry[2081]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Created slice user-1000.slice.
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Starting user-1000.slice.
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Starting User Manager for UID 1000...
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Started Session c2 of user mikkel.
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Starting Session c2 of user mikkel.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Reached target Timers.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Starting Timers.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Reached target Paths.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Starting Paths.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Reached target Sockets.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Starting Sockets.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Reached target Basic System.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Starting Basic System.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Reached target Default.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Startup finished in 6ms.
Oct 25 18:23:26 Mikkel-Linux systemd[2240]: Starting Default.
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Started User Manager for UID 1000.
Oct 25 18:23:26 Mikkel-Linux org.a11y.Bus[2308]: Activating service name='org.a11y.atspi.Registry'
Oct 25 18:23:26 Mikkel-Linux org.a11y.Bus[2308]: Successfully activated service 'org.a11y.atspi.Registry'
Oct 25 18:23:26 Mikkel-Linux org.a11y.atspi.Registry[2375]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Oct 25 18:23:26 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Starting Daemon for power management...
Oct 25 18:23:26 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Started Daemon for power management.
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: gnome-session[2364]: WARNING: Could not parse desktop file cinnamon-sound-applet.desktop or it references a not found TryExec binary
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: WARNING: Could not parse desktop file cinnamon-sound-applet.desktop or it references a not found TryExec binary
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: gnome-session[2364]: WARNING: Could not parse desktop file caribou-autostart.desktop or it references a not found TryExec binary
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: WARNING: Could not parse desktop file caribou-autostart.desktop or it references a not found TryExec binary
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: GPG_AGENT_INFO=/run/user/1000/keyring/gpg:0:1
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: GPG_AGENT_INFO=/run/user/1000/keyring/gpg:0:1
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: GPG_AGENT_INFO=/run/user/1000/keyring/gpg:0:1
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: GPG_AGENT_INFO=/run/user/1000/keyring/gpg:0:1
Oct 25 18:23:26 Mikkel-Linux gnome-session[2364]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Oct 25 18:23:26 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2522 of process 2522 (n/a) owned by '1000' high priority at nice level -11.
Oct 25 18:23:26 Mikkel-Linux rtkit-daemon[2140]: Supervising 7 threads of 2 processes of 2 users.
Oct 25 18:23:26 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Starting Hostname Service...
Oct 25 18:23:26 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 25 18:23:26 Mikkel-Linux systemd[1]: Started Hostname Service.
Oct 25 18:23:28 Mikkel-Linux rtkit-daemon[2140]: Supervising 7 threads of 2 processes of 2 users.
Oct 25 18:23:28 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2542 of process 2522 (n/a) owned by '1000' RT at priority 5.
Oct 25 18:23:28 Mikkel-Linux rtkit-daemon[2140]: Supervising 8 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 8 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2543 of process 2522 (n/a) owned by '1000' RT at priority 5.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 9 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 9 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2544 of process 2522 (n/a) owned by '1000' RT at priority 5.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 10 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux pulseaudio[2522]: [pulseaudio] sink.c: Default and alternate sample rates are the same.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 10 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2545 of process 2522 (n/a) owned by '1000' RT at priority 5.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 11 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux pulseaudio[2522]: [pulseaudio] source.c: Default and alternate sample rates are the same.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 11 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2546 of process 2522 (n/a) owned by '1000' RT at priority 5.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 12 threads of 2 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Successfully made thread 2548 of process 2548 (n/a) owned by '1000' high priority at nice level -11.
Oct 25 18:23:29 Mikkel-Linux rtkit-daemon[2140]: Supervising 13 threads of 3 processes of 2 users.
Oct 25 18:23:29 Mikkel-Linux pulseaudio[2548]: [pulseaudio] pid.c: Daemon already running.
Oct 25 18:23:29 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service'
Oct 25 18:23:29 Mikkel-Linux systemd[1]: Starting Locale Service...
Oct 25 18:23:29 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.locale1'
Oct 25 18:23:29 Mikkel-Linux systemd[1]: Started Locale Service.
Oct 25 18:23:30 Mikkel-Linux gnome-session[2364]: (gnome-shell:2553): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service'
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Starting Location Lookup Service...
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service'
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Starting WPA supplicant...
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Oct 25 18:23:31 Mikkel-Linux NetworkManager[827]: <info> wpa_supplicant started
Oct 25 18:23:31 Mikkel-Linux wpa_supplicant[2599]: Successfully initialized wpa_supplicant
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Started WPA supplicant.
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Started Location Lookup Service.
Oct 25 18:23:31 Mikkel-Linux org.gnome.OnlineAccounts[2308]: goa-daemon-Message: goa-daemon version 3.14.2 starting
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Starting Disk Manager...
Oct 25 18:23:31 Mikkel-Linux udisksd[2615]: udisks daemon version 2.1.5 starting
Oct 25 18:23:31 Mikkel-Linux org.gnome.Shell.CalendarServer[2308]: (gnome-shell-calendar-server:2565): ShellCalendarServer-CRITICAL **: create_client_for_source: assertion 'client == NULL' failed
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Oct 25 18:23:31 Mikkel-Linux systemd[1]: Started Disk Manager.
Oct 25 18:23:31 Mikkel-Linux udisksd[2615]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Oct 25 18:23:31 Mikkel-Linux org.gtk.Private.AfcVolumeMonitor[2308]: Volume monitor alive
Oct 25 18:23:31 Mikkel-Linux org.freedesktop.Telepathy.Client.AbiCollab[2308]: (abiword:2626): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
Oct 25 18:23:30 Mikkel-Linux gnome-session[2364]: (gnome-shell:2553): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Gjs-Message: JS LOG: No permission to trigger offline updates: Polkit.Error: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Action org.freedesktop.packagekit.trigger-offline-update is not registered
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: (light-locker:2654): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: (uint32 1,)
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: (nvidia-settings:2671): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Entering running state
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: ** (light-locker:2654): WARNING **: screensaver already running in this session
Oct 25 18:23:31 Mikkel-Linux AptDaemon: INFO: Initializing daemon
Oct 25 18:23:31 Mikkel-Linux org.freedesktop.PackageKit[831]: 18:23:31 AptDaemon [INFO]: Initializing daemon
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Starting Dropbox...
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: (blueman-applet:2703): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: #033[01mHP Linux Imaging and Printing System (ver. 3.15.2)#033[0m
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: #033[01mSystem Tray Status Service ver. 2.0#033[0m
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Copyright (c) 2001-15 Hewlett-Packard Development Company, LP
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: This software comes with ABSOLUTELY NO WARRANTY.
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: This is free software, and you are welcome to distribute it
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: under certain conditions. See COPYING file for more details.
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Loading configuration ... OK
Oct 25 18:23:31 Mikkel-Linux AptDaemon.PackageKit: INFO: Initializing PackageKit compat layer
Oct 25 18:23:31 Mikkel-Linux org.freedesktop.PackageKit[831]: 18:23:31 AptDaemon.PackageKit [INFO]: Initializing PackageKit compat layer
Oct 25 18:23:31 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.PackageKit'
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Starting onedrive-d ...
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: (guake:2675): libglade-WARNING **: unknown attribute `swapped' for <signal>.
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: message repeated 17 times: [ (guake:2675): libglade-WARNING **: unknown attribute `swapped' for <signal>.]
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Loading configuration plugins
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: blueman-applet version 1.99.alpha1 starting
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Using GConf config backend
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Using GConf config backend
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: Traceback (most recent call last):
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/bin/blueman-applet", line 110, in <module>
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: BluemanApplet()
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/bin/blueman-applet", line 53, in __init__
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: self.Plugins.Load()
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/main/PluginManager.py", line 84, in Load
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: __import__(self.module_path.__name__ + ".%s" % plugin, None, None, [])
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/plugins/applet/AuthAgent.py", line 3, in <module>
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: import blueman.main.applet.BluezAgent as BluezAgent
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/main/applet/BluezAgent.py", line 15, in <module>
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: from blueman.bluez.Agent import Agent, AgentMethod
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 42, in <module>
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: class Agent(dbus.service.Object):
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 50, in Agent
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: @AgentMethod
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/bluez/Agent.py", line 32, in AgentMethod
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: if BlueZInterface.get_interface_version()[0] < 5:
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/blueman/bluez/BlueZInterface.py", line 11, in get_interface_version
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: object = dbus.SystemBus().get_object('org.bluez', '/')
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 241, in get_object
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: follow_name_owner_changes=follow_name_owner_changes)
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/dbus/proxies.py", line 248, in __init__
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: self._named_service = conn.activate_name_owner(bus_name)
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 180, in activate_name_owner
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: self.start_service_by_name(bus_name)
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/dbus/bus.py", line 278, in start_service_by_name
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: 'su', (bus_name, flags)))
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: File "/usr/lib/python2.7/dist-packages/dbus/connection.py", line 651, in call_blocking
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: message, timeout)
Oct 25 18:23:31 Mikkel-Linux gnome-session[2364]: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.bluez was not provided by any .service files
Oct 25 18:23:32 Mikkel-Linux gnome-session[2364]: Dropbox isn't running!
Oct 25 18:23:32 Mikkel-Linux gnome-session[2364]: Done!
Oct 25 18:23:32 Mikkel-Linux gnome-session[2364]: OK
Oct 25 18:23:33 Mikkel-Linux systemd[1]: Started Daemon for generating UUIDs.
Oct 25 18:23:33 Mikkel-Linux systemd[1]: Starting Daemon for generating UUIDs...
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: (gnome-shell:2553): Gjs-WARNING **: JS ERROR: Exception in callback for signal: startup-complete: Error: Requiring GSystem, version none: Typelib file for namespace 'GSystem' (any version) not found
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _initializeUI/<@resource:///org/gnome/shell/ui/main.js:216
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _emit@resource:///org/gnome/gjs/modules/signals.js:124
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: LayoutManager<._startupAnimationComplete@resource:///org/gnome/shell/ui/layout.js:704
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _addHandler/params[name]@resource:///org/gnome/shell/ui/tweener.js:91
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _callOnFunction@resource:///org/gnome/gjs/modules/tweener/tweener.js:203
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _updateTweenByIndex@resource:///org/gnome/gjs/modules/tweener/tweener.js:333
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _updateTweens@resource:///org/gnome/gjs/modules/tweener/tweener.js:345
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _onEnterFrame@resource:///org/gnome/gjs/modules/tweener/tweener.js:360
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: _emit@resource:///org/gnome/gjs/modules/signals.js:124
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: ClutterFrameTicker<._onNewFrame@resource:///org/gnome/shell/ui/tweener.js:208
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: wrapper@resource:///org/gnome/gjs/modules/lang.js:169
Oct 25 18:23:33 Mikkel-Linux gnome-session[2364]: ClutterFrameTicker<._init/<@resource:///org/gnome/shell/ui/tweener.js:183
Oct 25 18:23:34 Mikkel-Linux org.freedesktop.thumbnails.Thumbnailer1[2308]: (tumblerd:2813): tumblerd-WARNING **: Failed to start the thumbnail cache service: Another thumbnail cache service is already running
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f6a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f6a.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c44.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c44.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001cae.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001cae.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001288.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001288.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001104.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001104.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000130d.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000130d.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000137a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000137a.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001462.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001462.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018ab.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018ab.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00011c4.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00011c4.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b8f.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b8f.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001064.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001064.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000177d.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000177d.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c7c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c7c.au' and mime:'audio/basic'
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:34 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001370.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001370.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013a2.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013a2.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010a1.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010a1.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001162.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001162.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b29.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b29.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b30.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b30.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001621.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001621.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013d5.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013d5.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00019c9.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00019c9.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010a3.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010a3.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001256.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001256.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001df6.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001df6.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001af2.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001af2.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00015ff.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00015ff.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000181a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000181a.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000197c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000197c.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000188c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000188c.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001543.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001543.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018e2.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018e2.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000112e.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000112e.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001267.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001267.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012c7.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012c7.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000107f.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000107f.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001aeb.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001aeb.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001a3c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001a3c.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001874.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001874.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001bf1.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001bf1.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013cd.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013cd.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c34.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c34.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00016b4.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00016b4.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013dc.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013dc.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001516.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001516.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f1c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f1c.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001529.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001529.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014f9.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014f9.au' and mime:'audio/basic'
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:35 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ebe.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ebe.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001872.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001872.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c97.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c97.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e89.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e89.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010ad.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00010ad.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e9a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e9a.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f9f.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f9f.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001775.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001775.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ec8.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ec8.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b93.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b93.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001570.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001570.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001efe.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001efe.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d77.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d77.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018a7.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018a7.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001868.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001868.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000191c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000191c.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012fa.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012fa.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001289.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001289.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001afc.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001afc.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001eed.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001eed.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001029.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001029.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000172c.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000172c.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001aad.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001aad.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018f6.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018f6.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012f4.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012f4.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001895.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001895.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c50.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001c50.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b80.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b80.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012ed.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012ed.au' and mime:'audio/basic'
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:36 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001055.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001055.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e1f.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e1f.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000142b.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000142b.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b95.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b95.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001631.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001631.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b38.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b38.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001191.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001191.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001373.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001373.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e09.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e09.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d07.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d07.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000117a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000117a.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001090.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001090.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001082.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001082.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000182a.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000182a.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001358.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001358.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018db.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00018db.au' and mime:'audio/basic'
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:37 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001566.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001566.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000192b.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e000192b.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001224.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001224.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001861.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001861.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001daf.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001daf.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001bbf.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001bbf.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001269.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001269.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001dbb.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001dbb.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014af.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014af.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001598.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001598.au' and mime:'audio/basic'
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:38 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ced.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ced.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001816.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001816.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d29.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001d29.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ca7.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ca7.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001620.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001620.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00011a5.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00011a5.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00019a9.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00019a9.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ef4.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001ef4.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012c8.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00012c8.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014de.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014de.au' and mime:'audio/basic'
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:39 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014c4.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014c4.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e92.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001e92.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001830.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001830.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001adc.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001adc.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b20.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001b20.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001635.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001635.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013bb.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00013bb.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001821.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001821.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001dfa.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001dfa.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001156.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001156.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00015e8.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00015e8.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014a8.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00014a8.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001453.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001453.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001715.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001715.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f86.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e0001f86.au' and mime:'audio/basic'
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: The stream is in the wrong format.
Oct 25 18:23:40 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00017ab.au' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Videos/Kdenlive/AntiStaticBags/audio_data/e00/d01/e00017ab.au' and mime:'audio/basic'
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Downloads/CrashPlan-install/CrashPlan_3.7.0.cpi' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Downloads/CrashPlan-install/CrashPlan_3.7.0.cpi' and mime:'video/mp2t'
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Aalborgs%20Tilbud%20cover.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Aalborgs%20Tilbud%20cover.xcf' and mime:'image/x-xcf'
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:64 qPrintable(qstrLocaleLower)=[en_us
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ]
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:80 qPrintable(qstrLocaleLower)=[en_us]
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:161 qPrintable(qstrLangFileName)=[:/enu.qm]
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:138 qPrintable(qstrDef)=[enu
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: ]
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: lib path = '/opt/Synology/CloudStation/lib/plugins'
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Waoo%20priser%20i%20USD.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Waoo%20priser%20i%20USD.xcf' and mime:'image/x-xcf'
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:41 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/me.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/me.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Kunne%20heller%20ikke%20finde%20navn.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Kunne%20heller%20ikke%20finde%20navn.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:64 qPrintable(qstrLocaleLower)=[en_us
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ]
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:80 qPrintable(qstrLocaleLower)=[en_us]
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:161 qPrintable(qstrLangFileName)=[:/enu.qm]
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ../libcommon/SynoLocale.cpp:138 qPrintable(qstrDef)=[enu
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: ]
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: "sni-qt/3111" WARN 18:23:42.349 void StatusNotifierItemFactory::connectToSnw() Invalid interface to SNW_SERVICE
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Kunne%20ikke%20finde%20navn.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Kunne%20ikke%20finde%20navn.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Mikkel1.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Mikkel1.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/magnus2.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/magnus2.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/magnus1.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/magnus1.xcf' and mime:'image/x-xcf'
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Call to gst_discoverer_discover_uri() failed: Your GStreamer installation is missing a plug-in.
Oct 25 18:23:42 Mikkel-Linux gnome-session[2364]: (tracker-extract:2656): Tracker-WARNING **: Task for 'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Gruppe.xcf' finished with error: Could not get any metadata for uri:'file:///home/mikkel/Pictures/Bestyrelse_SankelmarksGade/touchUp/Gruppe.xcf' and mime:'image/x-xcf'
Oct 25 18:23:45 Mikkel-Linux systemd[1]: Starting Stop ureadahead data collection...
Oct 25 18:23:45 Mikkel-Linux systemd[1]: Stopped Read required files in advance.
Oct 25 18:23:45 Mikkel-Linux systemd[1]: Started Stop ureadahead data collection.
Oct 25 18:23:46 Mikkel-Linux gnome-session[2364]: (gnome-user-share:3150): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:23:51 Mikkel-Linux org.gnome.zeitgeist.Engine[2308]: ** (zeitgeist-datahub:3192): WARNING **: zeitgeist-datahub.vala:229: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
Oct 25 18:23:51 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/ble" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:23:51 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/mikkel/Pictures/Screenshot%20from%202015-10-24%2011:30:30.png" was not found, exec: gnome-settings-daemon, mime_type: image/png
Oct 25 18:23:51 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///etc/apache2" was not found, exec: catfish.py, mime_type: inode/directory
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/mikkel/Freenet%20sites/Snuletek" was not found, exec: catfish.py, mime_type: inode/directory
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/cherry-mx-led-clean.stl" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/cherry-mx-no-led-clean.stl" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/Cherry-mx-no-led-nocolor.wings" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/Cherry-mx-no-led.wrl" was not found, exec: Erlang, mime_type: model/vrml
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/Cherry-mx-no-led" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:23:52 Mikkel-Linux gnome-session[2364]: ** (zeitgeist-datahub:3174): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///media/data/OneDrive/KiCAD/3D%20things/CherryMX-switch/cherry-mx-led.stl" was not found, exec: Erlang, mime_type: application/octet-stream
Oct 25 18:24:02 Mikkel-Linux gnome-session[2364]: (evolution-alarm-notify:3255): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:31 Mikkel-Linux gnome-session[2364]: (update-notifier:3305): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.ControlCenter.SearchProvider[2308]: (gnome-control-center-search-provider:3335): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.seahorse.Application[2308]: (seahorse:3345): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:3347): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:24:43 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:3347): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.Nautilus[2308]: (nautilus:3343): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux nautilus: libnautilus-cloud-extension.so init
Oct 25 18:24:43 Mikkel-Linux nautilus: thread_start [268]:bind successfull for path = '/home/mikkel/.cloud-ipc-socket'
Oct 25 18:24:43 Mikkel-Linux nautilus: thread_start [272]:running with sock 15.....
Oct 25 18:24:43 Mikkel-Linux nautilus: setDumpCacheReady [110]:Set dump cache as ready
Oct 25 18:24:43 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:3337): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.Documents[2308]: (gnome-documents:3341): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:24:43 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:24:44 Mikkel-Linux org.gnome.OnlineMiners.GData[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:24:44 Mikkel-Linux org.gnome.OnlineMiners.Owncloud[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:24:44 Mikkel-Linux org.gnome.OnlineMiners.Zpj[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:24:44 Mikkel-Linux org.gnome.Nautilus[2308]: Initializing nautilus-dropbox 2.10.0
Oct 25 18:24:44 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:3337): folks-WARNING **: Error preparing persona store 'eds:1426547614.2390.5@Mikkel-Linux': Couldn't open address book ‘1426547614.2390.5@Mikkel-Linux’: Unable to connect to 'Contacts': The requested resource was not found: https://developers.google.com/accounts/docs/AuthForInstalledApps
Oct 25 18:24:45 Mikkel-Linux org.kde.kglobalaccel[2308]: Could not find drkonqi at /usr/lib/x86_64-linux-gnu/libexec/drkonqi
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: "Theme tree: (Oxygen)"
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: No DockManager available
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.118'
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: detected kglobalaccel restarting, re-registering all shortcut keys
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: Enabling compression...
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: Using the DataStream protocol...
Oct 25 18:24:46 Mikkel-Linux quasselclient.desktop[3394]: Starting encryption...
Oct 25 18:25:00 Mikkel-Linux systemd[1]: Stopping User Manager for UID 123...
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Reached target Shutdown.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Starting Shutdown.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Starting Exit the Session...
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopped target Default.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopping Default.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopped target Basic System.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopping Basic System.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopped target Sockets.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopping Sockets.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopped target Paths.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopping Paths.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopped target Timers.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Stopping Timers.
Oct 25 18:25:00 Mikkel-Linux systemd[2048]: Received SIGRTMIN+24 from PID 3710 (kill).
Oct 25 18:25:00 Mikkel-Linux systemd[1]: Stopped User Manager for UID 123.
Oct 25 18:25:00 Mikkel-Linux systemd[1]: Removed slice user-123.slice.
Oct 25 18:25:00 Mikkel-Linux systemd[1]: Stopping user-123.slice.
Oct 25 18:25:16 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:16 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:4232): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:16 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:4232): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:16 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:4217): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:16 Mikkel-Linux org.gnome.Nautilus[2308]: (nautilus:4223): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:16 Mikkel-Linux org.gnome.Documents[2308]: (gnome-documents:4221): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:16 Mikkel-Linux nautilus: libnautilus-cloud-extension.so init
Oct 25 18:25:16 Mikkel-Linux nautilus: thread_start [268]:bind successfull for path = '/home/mikkel/.cloud-ipc-socket'
Oct 25 18:25:16 Mikkel-Linux nautilus: thread_start [272]:running with sock 14.....
Oct 25 18:25:16 Mikkel-Linux nautilus: setDumpCacheReady [110]:Set dump cache as ready
Oct 25 18:25:16 Mikkel-Linux org.gnome.Nautilus[2308]: Initializing nautilus-dropbox 2.10.0
Oct 25 18:25:16 Mikkel-Linux org.gnome.OnlineMiners.GData[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:16 Mikkel-Linux org.gnome.OnlineMiners.Owncloud[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:16 Mikkel-Linux org.gnome.OnlineMiners.Zpj[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:16 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:4217): folks-WARNING **: Error preparing persona store 'eds:1426547614.2390.5@Mikkel-Linux': Couldn't open address book ‘1426547614.2390.5@Mikkel-Linux’: Unable to connect to 'Contacts': The requested resource was not found: https://developers.google.com/accounts/docs/AuthForInstalledApps
Oct 25 18:25:16 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:18 Mikkel-Linux gnome-system-log.desktop[4346]: (gnome-system-log:4346): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:17 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:34 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:4726): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:34 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:34 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:4726): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:34 Mikkel-Linux org.gnome.Nautilus[2308]: (nautilus:4723): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:34 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:4716): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:34 Mikkel-Linux nautilus: libnautilus-cloud-extension.so init
Oct 25 18:25:34 Mikkel-Linux nautilus: thread_start [268]:bind successfull for path = '/home/mikkel/.cloud-ipc-socket'
Oct 25 18:25:34 Mikkel-Linux nautilus: thread_start [272]:running with sock 14.....
Oct 25 18:25:34 Mikkel-Linux nautilus: setDumpCacheReady [110]:Set dump cache as ready
Oct 25 18:25:34 Mikkel-Linux org.gnome.Nautilus[2308]: Initializing nautilus-dropbox 2.10.0
Oct 25 18:25:34 Mikkel-Linux org.gnome.Documents[2308]: (gnome-documents:4724): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:34 Mikkel-Linux org.gnome.OnlineMiners.GData[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:34 Mikkel-Linux org.gnome.OnlineMiners.Owncloud[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:34 Mikkel-Linux org.gnome.OnlineMiners.Zpj[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:25:34 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:4716): folks-WARNING **: Error preparing persona store 'eds:1426547614.2390.5@Mikkel-Linux': Couldn't open address book ‘1426547614.2390.5@Mikkel-Linux’: Unable to connect to 'Contacts': The requested resource was not found: https://developers.google.com/accounts/docs/AuthForInstalledApps
Oct 25 18:25:34 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:35 Mikkel-Linux gnome-session[2364]: (gnome-shell:2553): St-CRITICAL **: setup_framebuffers: assertion 'width > 0' failed
Oct 25 18:25:35 Mikkel-Linux kernel: [ 258.485090] show_signal_msg: 45 callbacks suppressed
Oct 25 18:25:35 Mikkel-Linux kernel: [ 258.485093] gnome-system-lo[4346]: segfault at 408 ip 000000000040c260 sp 00007fff6e288520 error 4 in gnome-system-log[400000+1c000]
Oct 25 18:25:35 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:25:35 Mikkel-Linux org.gnome.Nautilus[2308]: (rhythmbox:4782): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:25:35 Mikkel-Linux org.gnome.Nautilus[2308]: (rhythmbox:4782): Gtk-WARNING **: Duplicate child name in GtkStack: Add to Playlist
Oct 25 18:25:35 Mikkel-Linux org.gnome.Nautilus[2308]: message repeated 5 times: [ (rhythmbox:4782): Gtk-WARNING **: Duplicate child name in GtkStack: Add to Playlist]
Oct 25 18:25:39 Mikkel-Linux org.gnome.Nautilus[2308]: (rhythmbox:4782): Gtk-WARNING **: mnemonic "s" wasn't removed for widget (0x1fae690)
Oct 25 18:25:39 Mikkel-Linux org.gnome.Nautilus[2308]: (rhythmbox:4782): Gtk-CRITICAL **: gtk_tree_selection_count_selected_rows: assertion 'GTK_IS_TREE_SELECTION (selection)' failed
Oct 25 18:25:39 Mikkel-Linux org.gnome.Nautilus[2308]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Oct 25 18:25:43 Mikkel-Linux chromium-browser.desktop[4823]: Using PPAPI flash.
Oct 25 18:25:45 Mikkel-Linux chromium-browser.desktop[4823]: [4823:4823:1025/182545:ERROR:background_mode_manager_aura.cc(14)] Not implemented reached in virtual void BackgroundModeManager::EnableLaunchOnStartup(bool)
Oct 25 18:26:01 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:5900): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:26:01 Mikkel-Linux org.gnome.Terminal[2308]: (gnome-terminal-server:5900): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.ControlCenter.SearchProvider[2308]: (gnome-control-center-search-provider:5892): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.seahorse.Application[2308]: (seahorse:5901): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:5894): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.Nautilus[2308]: (nautilus:5902): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux nautilus: libnautilus-cloud-extension.so init
Oct 25 18:26:01 Mikkel-Linux nautilus: thread_start [268]:bind successfull for path = '/home/mikkel/.cloud-ipc-socket'
Oct 25 18:26:01 Mikkel-Linux nautilus: thread_start [272]:running with sock 14.....
Oct 25 18:26:01 Mikkel-Linux nautilus: setDumpCacheReady [110]:Set dump cache as ready
Oct 25 18:26:01 Mikkel-Linux org.gnome.Nautilus[2308]: Initializing nautilus-dropbox 2.10.0
Oct 25 18:26:01 Mikkel-Linux org.gnome.Documents[2308]: (gnome-documents:5903): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:26:01 Mikkel-Linux org.gnome.OnlineMiners.GData[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:26:01 Mikkel-Linux org.gnome.OnlineMiners.Owncloud[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:26:01 Mikkel-Linux org.gnome.OnlineMiners.Zpj[2308]: Gom-Message: Setting scheduler policy to SCHED_IDLE
Oct 25 18:26:02 Mikkel-Linux whoopsie[800]: [18:26:02] Parsing /var/crash/_usr_bin_gnome-system-log.1000.crash.
Oct 25 18:26:02 Mikkel-Linux whoopsie[800]: [18:26:02] Uploading /var/crash/_usr_bin_gnome-system-log.1000.crash.
Oct 25 18:26:02 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:26:02 Mikkel-Linux org.gnome.Contacts.SearchProvider[2308]: (gnome-contacts-search-provider:5894): folks-WARNING **: Error preparing persona store 'eds:1426547614.2390.5@Mikkel-Linux': Couldn't open address book ‘1426547614.2390.5@Mikkel-Linux’: Unable to connect to 'Contacts': The requested resource was not found: https://developers.google.com/accounts/docs/AuthForInstalledApps
Oct 25 18:26:02 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:26:03 Mikkel-Linux whoopsie[800]: [18:26:03] Sent; server replied with: No error
Oct 25 18:26:03 Mikkel-Linux whoopsie[800]: [18:26:03] Response code: 200
Oct 25 18:26:03 Mikkel-Linux whoopsie[800]: [18:26:03] Reported OOPS ID 76ec20dc-7b3d-11e5-8855-fa163e5bb1a2
Oct 25 18:26:03 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: message repeated 3 times: [ Error: ErrorCode.UNKNOWN_VARIABLE]
Oct 25 18:26:04 Mikkel-Linux org.gnome.Documents[2308]: Gjs-Message: JS LOG: Unable to read results of FetchIdsJob: Interrupted
Oct 25 18:26:04 Mikkel-Linux org.gnome.Calculator.SearchProvider[2308]: Error: ErrorCode.UNKNOWN_VARIABLE
Oct 25 18:26:04 Mikkel-Linux org.gnome.Documents[2308]: (gnome-documents:5903): GLib-GIO-CRITICAL **: g_application_release: assertion 'application->priv->use_count > 0' failed
Oct 25 18:26:04 Mikkel-Linux gnome-system-log.desktop[6008]: (gnome-system-log:6008): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: (nautilus:6483): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:57:14: Theming engine 'unico' not found
Oct 25 18:27:51 Mikkel-Linux nautilus: libnautilus-cloud-extension.so init
Oct 25 18:27:51 Mikkel-Linux nautilus: thread_start [268]:bind successfull for path = '/home/mikkel/.cloud-ipc-socket'
Oct 25 18:27:51 Mikkel-Linux nautilus: thread_start [272]:running with sock 17.....
Oct 25 18:27:51 Mikkel-Linux nautilus: setDumpCacheReady [110]:Set dump cache as ready
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: Initializing nautilus-dropbox 2.10.0
Oct 25 18:27:51 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Oct 25 18:27:51 Mikkel-Linux systemd[1]: Starting Hostname Service...
Oct 25 18:27:51 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 25 18:27:51 Mikkel-Linux systemd[1]: Started Hostname Service.
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: Nautilus-Share-Message: Called "net usershare info" but it failed: 'net usershare' returned error 255: net usershare: cannot open usershare directory /var/lib/samba/usershares. Error No such file or directory
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: Please ask your system administrator to enable user sharing.
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x15f9200
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1443cd0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x15e1af0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x141a990
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x14561e0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17a6550
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1789700
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x13495d0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1688530
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e5750
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e5bf0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e6000
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e6410
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e66a0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17ce4e0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e6e40
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16efb00
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17c8030
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e7900
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e56b0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e7b00
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e4810
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e4aa0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17dd6b0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17ddcc0
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e7e50
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e8120
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e4c90
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17dd610
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e8370
Oct 25 18:27:51 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e8b80
Oct 25 18:25:35 Mikkel-Linux gnome-session[2364]: message repeated 7 times: [ (gnome-shell:2553): St-CRITICAL **: setup_framebuffers: assertion 'width > 0' failed]
Oct 25 18:27:55 Mikkel-Linux gnome-session[2364]: (gnome-shell:2553): mutter-WARNING **: NOTE: Not using GLX TFP!
Oct 25 18:28:08 Mikkel-Linux quasselclient.desktop[3394]: Using PPAPI flash.
Oct 25 18:28:08 Mikkel-Linux quasselclient.desktop[3394]: Created new window in existing browser session.
Oct 25 18:28:31 Mikkel-Linux dbus[831]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Oct 25 18:28:31 Mikkel-Linux systemd[1]: Starting Hostname Service...
Oct 25 18:28:31 Mikkel-Linux dbus[831]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 25 18:28:31 Mikkel-Linux systemd[1]: Started Hostname Service.
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1738ee0
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d8790
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x154d180
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1516610
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d8a30
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d8e40
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1538080
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d6c90
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1657a20
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x187b140
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e8ef0
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174d000
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174d4a0
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174dfc0
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1516250
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d6110
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d63a0
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174d720
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174d840
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174dc90
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x174df30
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d6590
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1769530
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1769220
Oct 25 18:28:31 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1769a20
Oct 25 18:28:47 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1538390
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17392e0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1515560
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1719b00
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e3250
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1798440
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17c8ea0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18f0760
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1637ea0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17ff620
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1826c60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1507a80
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x167fe00
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1719a20
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1826d70
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1753c70
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1826e40
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x172af60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1810c90
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1516050
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1719cd0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1719dd0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16d8420
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x172b590
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1762e50
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17198c0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1810580
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1642c60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16ceb60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18ed2c0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x175ef10
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18f5580
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x172b080
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16a5a00
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1537b10
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1571ce0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16f8050
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1735c20
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1344280
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1715530
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1715720
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17732c0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16ee260
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18ecee0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1738e60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18f6410
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17e9430
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1745670
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16f7e00
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1826530
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1642c90
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x15960a0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17432b0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1743500
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x13f4c80
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1610db0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17808f0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16ec6a0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18fa190
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1826b30
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x153e840
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x180f6f0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18f6910
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1612880
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x13f14b0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1743210
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x177b4d0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18eecc0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18eed90
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1596f50
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1597220
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1730760
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x134ce70
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16655a0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1698d50
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1699020
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1699210
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18f8320
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x152f2e0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x152f5b0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16490e0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16494d0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1649630
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1639d80
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x163a0a0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1699270
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1714300
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x168d920
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x150f5f0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x150f8c0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x150fab0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16cdad0
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16cdc60
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16cdd30
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16ce370
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1714740
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17c8230
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17c8710
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17c8810
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1647550
Oct 25 18:28:48 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x16ce6d0
Oct 25 18:28:50 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x15018d0
Oct 25 18:28:53 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x19023b0
Oct 25 18:28:56 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x193dd40
Oct 25 18:28:58 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1866db0
Oct 25 18:29:01 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x192aaf0
Oct 25 18:29:03 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18efbc0
Oct 25 18:29:06 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x150f360
Oct 25 18:29:08 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x191d440
Oct 25 18:29:10 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x191c2e0
Oct 25 18:29:13 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x135e6f0
Oct 25 18:29:14 Mikkel-Linux quasselclient.desktop[3394]: Using PPAPI flash.
Oct 25 18:29:14 Mikkel-Linux quasselclient.desktop[3394]: Created new window in existing browser session.
Oct 25 18:29:17 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x17ab6e0
Oct 25 18:29:19 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1948ed0
Oct 25 18:29:20 Mikkel-Linux quasselclient.desktop[3394]: Couldn't start kded5 from org.kde.kded5.service: QDBusError("org.freedesktop.DBus.Error.ServiceUnknown", "The name org.kde.kded5 was not provided by any .service files") , falling back to running kbuildsycoca5
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: Trying to open ksycoca from "/home/mikkel/.cache/ksycoca5"
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: Calling notify on "Sound"
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: WARNING: bool Phonon::FactoryPrivate::createBackend() phonon backend plugin could not be loaded
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: message repeated 3 times: [ WARNING: bool Phonon::FactoryPrivate::createBackend() phonon backend plugin could not be loaded]
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: WARNING: Phonon::createPath: Cannot connect Phonon::MediaObject ( no objectName ) to Phonon::AudioOutput ( no objectName ).
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: WARNING: bool Phonon::FactoryPrivate::createBackend() phonon backend plugin could not be loaded
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: WARNING: bool Phonon::FactoryPrivate::createBackend() phonon backend plugin could not be loaded
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: Calling notify on "Popup"
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: Calling notify on "Taskbar"
Oct 25 18:29:21 Mikkel-Linux quasselclient.desktop[3394]: 0 54525966
Oct 25 18:29:24 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x18fee80
Oct 25 18:29:26 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x197f430
Oct 25 18:29:27 Mikkel-Linux quasselclient.desktop[3394]: Closing notification 1
Oct 25 18:29:27 Mikkel-Linux quasselclient.desktop[3394]: WARNING: bool Phonon::FactoryPrivate::createBackend() phonon backend plugin could not be loaded
Oct 25 18:29:29 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1560300
Oct 25 18:29:32 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1981690
Oct 25 18:29:34 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x194dac0
Oct 25 18:29:37 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x194e4c0
Oct 25 18:29:39 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1431800
Oct 25 18:29:41 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x19277f0
Oct 25 18:29:44 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x19321b0
Oct 25 18:29:47 Mikkel-Linux org.gnome.Nautilus[2308]: ** (nautilus:6483): WARNING **: Unexpected plugin response. This probably indicates a bug in a Nautilus extension: handle=0x1937c50
|