Don't like ads? PRO users don't see any ads ;-)
Guest

Tomahawk log

By: alexb128 on Mar 4th, 2012  |  syntax: None  |  size: 75.80 KB  |  hits: 50  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. 22:20:03 [0]: Starting Tomahawk...
  2. 22:20:05 [0]: Create tables... old version is 0
  3. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS oplog (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     guid TEXT NOT NULL,    command TEXT NOT NULL,    singleton BOOLEAN NOT NULL,    compressed BOOLEAN NOT NULL,    json TEXT NOT NULL)"
  4. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX oplog_guid ON oplog(guid)"
  5. 22:20:05 [0]: Executing: "CREATE INDEX oplog_source ON oplog(source)"
  6. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  7. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX artist_sortname ON artist(sortname)"
  8. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS track (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  9. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX track_artist_sortname ON track(artist,sortname)"
  10. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS album (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  11. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX album_artist_sortname ON album(artist,sortname)"
  12. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS source (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    friendlyname TEXT,    lastop TEXT NOT NULL DEFAULT "",           isonline BOOLEAN NOT NULL DEFAULT false)"
  13. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX source_name ON source(name)"
  14. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist (    guid TEXT PRIMARY KEY,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     shared BOOLEAN DEFAULT false,    title TEXT,    info TEXT,    creator TEXT,    lastmodified INTEGER NOT NULL DEFAULT 0,    currentrevision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED,    dynplaylist BOOLEAN DEFAULT false,    createdOn INTEGER NOT NULL DEFAULT 0)"
  15. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_item (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    trackname  TEXT NOT NULL,    artistname TEXT NOT NULL,    albumname  TEXT,    annotation TEXT,    duration INTEGER,           addedon INTEGER NOT NULL DEFAULT 0,       addedby INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     result_hint TEXT        )"
  16. 22:20:05 [0]: Executing: "CREATE INDEX playlist_item_playlist ON playlist_item(playlist)"
  17. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_revision (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    entries TEXT,     author INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    timestamp INTEGER NOT NULL DEFAULT 0,    previous_revision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED)"
  18. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist (    guid TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    pltype TEXT,     plmode INTEGER,     autoload BOOLEAN DEFAULT true )"
  19. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_controls (    id TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    selectedType TEXT,    match TEXT,    input TEXT)"
  20. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_revision (    guid TEXT PRIMARY KEY NOT NULL REFERENCES playlist_revision(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    controls TEXT,     plmode INTEGER,    pltype TEXT)"
  21. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS file (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    url TEXT NOT NULL,                       size INTEGER NOT NULL,                   mtime INTEGER NOT NULL,                  md5 TEXT,                                mimetype TEXT,                           duration INTEGER NOT NULL DEFAULT 0,     bitrate INTEGER NOT NULL DEFAULT 0   )"
  22. 22:20:05 [0]: Executing: "CREATE UNIQUE INDEX file_url_src_uniq ON file(source, url)"
  23. 22:20:05 [0]: Executing: "CREATE INDEX file_source ON file(source)"
  24. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS dirs_scanned (    name TEXT PRIMARY KEY,    mtime INTEGER NOT NULL)"
  25. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS file_join (    file INTEGER PRIMARY KEY REFERENCES file(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER NOT NULL REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    album INTEGER REFERENCES album(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    albumpos INTEGER)"
  26. 22:20:05 [0]: Executing: "CREATE INDEX file_join_track  ON file_join(track)"
  27. 22:20:05 [0]: Executing: "CREATE INDEX file_join_artist ON file_join(artist)"
  28. 22:20:05 [0]: Executing: "CREATE INDEX file_join_album  ON file_join(album)"
  29. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  30. 22:20:05 [0]: Executing: "CREATE INDEX track_tags_tag ON track_tags(tag)"
  31. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS album_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  32. 22:20:05 [0]: Executing: "CREATE INDEX album_tags_tag ON album_tags(tag)"
  33. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  34. 22:20:05 [0]: Executing: "CREATE INDEX artist_tags_tag ON artist_tags(tag)"
  35. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       k TEXT NOT NULL,    v TEXT NOT NULL)"
  36. 22:20:05 [0]: Executing: "CREATE INDEX track_attrib_id ON track_attributes(id)"
  37. 22:20:05 [0]: Executing: "CREATE INDEX track_attrib_k  ON track_attributes(k)"
  38. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS collection_attributes (    id INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     k TEXT NOT NULL,    v TEXT NOT NULL)"
  39. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS social_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     k TEXT NOT NULL,    v TEXT NOT NULL,    timestamp INTEGER NOT NULL DEFAULT 0)"
  40. 22:20:05 [0]: Executing: "CREATE INDEX social_attrib_id        ON social_attributes(id)"
  41. 22:20:05 [0]: Executing: "CREATE INDEX social_attrib_source    ON social_attributes(source)"
  42. 22:20:05 [0]: Executing: "CREATE INDEX social_attrib_k         ON social_attributes(k)"
  43. 22:20:05 [0]: Executing: "CREATE INDEX social_attrib_timestamp ON social_attributes(timestamp)"
  44. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS playback_log (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    playtime INTEGER NOT NULL,                  secs_played INTEGER NOT NULL)"
  45. 22:20:05 [0]: Executing: "CREATE INDEX playback_log_source ON playback_log(source)"
  46. 22:20:05 [0]: Executing: "CREATE INDEX playback_log_track ON playback_log(track)"
  47. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS http_client_auth (    token TEXT NOT NULL PRIMARY KEY,    website TEXT NOT NULL,    name TEXT NOT NULL,    ua TEXT,    mtime INTEGER,    permissions TEXT NOT NULL)"
  48. 22:20:05 [0]: Executing: "CREATE TABLE IF NOT EXISTS settings (    k TEXT NOT NULL PRIMARY KEY,    v TEXT NOT NULL DEFAULT '')"
  49. 22:20:05 [0]: Executing: "INSERT INTO settings(k,v) VALUES('schema_version', '27')"
  50. 22:20:05 [0]: Database ID: "fea9f1bd-da17-4ca2-92bb-615a98afa0f4"
  51. 22:20:05 [0]: Cache version outdated, old: 0 new: 2 Doing upgrade, if any...
  52. 22:20:06 [0]: Starting HTTPd on "127.0.0.1" 60210
  53. 22:20:06 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  54. 22:20:06 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  55. 22:20:06 [0]: Servent listening on port 50210 - servent thread: QThread(0x104611950) - address mode: 1
  56. 22:20:06 [0]: External address mode set to upnp...
  57. 22:20:57 [0]: DatabaseCommand_UpdateSearchIndex::DatabaseCommand_UpdateSearchIndex() Updating index.
  58. 22:23:13 [0]: Caught parser error from echonest! The Identifier specified does not exist
  59. 22:23:48 [0]: Starting new song: "file:///Users/alexberger/Music/Compilations/Pork_ A compilation of Pork recordings/04 The Cleric.m4a"
  60. 22:23:48 [0]: LastFmPlugin::nowPlaying no m_scrobbler, or cannot convert input!
  61. 22:23:48 [0]: No scrobbler!
  62. 22:30:42 [0]: Object::connect: No such signal TwitterPlugin::datatError( bool )
  63. 22:30:48 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  64. 22:30:48 [0]: Object::connect:  (sender name:   'JabberConfig')
  65. 22:30:48 [0]: Object::connect: No such signal GoogleWrapper::datatError( bool )
  66. 22:31:32 [0]: DatabaseCommand_UpdateSearchIndex::DatabaseCommand_UpdateSearchIndex() Updating index.
  67. 22:34:01 [0]: Shutting down Tomahawk...
  68. 22:34:01 [0]: Finished shutdown.
  69. 22:34:21 [0]: Starting Tomahawk...
  70. 22:34:21 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  71. 22:34:21 [0]: Database ID: "fea9f1bd-da17-4ca2-92bb-615a98afa0f4"
  72. 22:34:21 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  73. 22:34:21 [0]: Starting HTTPd on "127.0.0.1" 60210
  74. 22:34:21 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  75. 22:34:21 [0]: Servent listening on port 50210 - servent thread: QThread(0x10441f750) - address mode: 1
  76. 22:34:21 [0]: External address mode set to upnp...
  77. 22:34:30 [0]: Shutting down Tomahawk...
  78. 22:34:30 [0]: Finished shutdown.
  79. 22:35:16 [0]: Starting Tomahawk...
  80. 22:35:16 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  81. 22:35:16 [0]: Database ID: "fea9f1bd-da17-4ca2-92bb-615a98afa0f4"
  82. 22:35:16 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  83. 22:35:16 [0]: Starting HTTPd on "127.0.0.1" 60210
  84. 22:35:16 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  85. 22:35:16 [0]: Servent listening on port 50210 - servent thread: QThread(0x104612050) - address mode: 1
  86. 22:35:16 [0]: External address mode set to upnp...
  87. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "4shared"
  88. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "ampache"
  89. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "exfm"
  90. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "grooveshark"
  91. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "jamendo"
  92. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "lastfm"
  93. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "officialfm"
  94. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "soundcloud"
  95. 22:35:17 [0]: Found resolver icon cached for resolver we no longer see in synchrotron repo: "youtube"
  96. 22:37:45 [0]: updating dynamic playlist, optimistic locking okay
  97. 22:37:45 [0]: Postcommitting this playlist: "352a0a5d-383b-4346-91de-6c71a1bc93f0" false
  98. 22:37:56 [0]: updating dynamic playlist, optimistic locking okay
  99. 22:37:56 [0]: Postcommitting this playlist: "352a0a5d-383b-4346-91de-6c71a1bc93f0" false
  100. 22:37:57 [0]: updating dynamic playlist, optimistic locking okay
  101. 22:37:57 [0]: Postcommitting this playlist: "352a0a5d-383b-4346-91de-6c71a1bc93f0" false
  102. 22:44:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  103. 22:44:45 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  104. 22:44:53 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  105. 22:45:17 [0]: Shutting down Tomahawk...
  106. 22:45:18 [0]: Finished shutdown.
  107. 22:45:23 [0]: Starting Tomahawk...
  108. 22:45:23 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  109. 22:45:23 [0]: Database ID: "fea9f1bd-da17-4ca2-92bb-615a98afa0f4"
  110. 22:45:23 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  111. 22:45:23 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  112. 22:45:23 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  113. 22:45:23 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  114. 22:45:23 [0]: Starting HTTPd on "127.0.0.1" 60210
  115. 22:45:23 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  116. 22:45:23 [0]: Servent listening on port 50210 - servent thread: QThread(0x104615f90) - address mode: 1
  117. 22:45:23 [0]: External address mode set to upnp...
  118. 22:51:29 [0]: Shutting down Tomahawk...
  119. 22:52:29 [0]: QMetaObject::invokeMethod: No such method QObject::scanDir(QDir,int)
  120. 22:52:29 [0]: QMetaObject::invokeMethod: No such method QObject::scanDir(QDir,int)
  121. 22:52:29 [0]: Finished shutdown.
  122. 22:52:40 [0]: Starting Tomahawk...
  123. 22:52:40 [0]: Create tables... old version is 0
  124. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS oplog (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     guid TEXT NOT NULL,    command TEXT NOT NULL,    singleton BOOLEAN NOT NULL,    compressed BOOLEAN NOT NULL,    json TEXT NOT NULL)"
  125. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX oplog_guid ON oplog(guid)"
  126. 22:52:40 [0]: Executing: "CREATE INDEX oplog_source ON oplog(source)"
  127. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  128. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX artist_sortname ON artist(sortname)"
  129. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS track (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  130. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX track_artist_sortname ON track(artist,sortname)"
  131. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS album (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  132. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX album_artist_sortname ON album(artist,sortname)"
  133. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS source (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    friendlyname TEXT,    lastop TEXT NOT NULL DEFAULT "",           isonline BOOLEAN NOT NULL DEFAULT false)"
  134. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX source_name ON source(name)"
  135. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist (    guid TEXT PRIMARY KEY,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     shared BOOLEAN DEFAULT false,    title TEXT,    info TEXT,    creator TEXT,    lastmodified INTEGER NOT NULL DEFAULT 0,    currentrevision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED,    dynplaylist BOOLEAN DEFAULT false,    createdOn INTEGER NOT NULL DEFAULT 0)"
  136. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_item (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    trackname  TEXT NOT NULL,    artistname TEXT NOT NULL,    albumname  TEXT,    annotation TEXT,    duration INTEGER,           addedon INTEGER NOT NULL DEFAULT 0,       addedby INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     result_hint TEXT        )"
  137. 22:52:40 [0]: Executing: "CREATE INDEX playlist_item_playlist ON playlist_item(playlist)"
  138. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_revision (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    entries TEXT,     author INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    timestamp INTEGER NOT NULL DEFAULT 0,    previous_revision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED)"
  139. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist (    guid TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    pltype TEXT,     plmode INTEGER,     autoload BOOLEAN DEFAULT true )"
  140. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_controls (    id TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    selectedType TEXT,    match TEXT,    input TEXT)"
  141. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_revision (    guid TEXT PRIMARY KEY NOT NULL REFERENCES playlist_revision(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    controls TEXT,     plmode INTEGER,    pltype TEXT)"
  142. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS file (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    url TEXT NOT NULL,                       size INTEGER NOT NULL,                   mtime INTEGER NOT NULL,                  md5 TEXT,                                mimetype TEXT,                           duration INTEGER NOT NULL DEFAULT 0,     bitrate INTEGER NOT NULL DEFAULT 0   )"
  143. 22:52:40 [0]: Executing: "CREATE UNIQUE INDEX file_url_src_uniq ON file(source, url)"
  144. 22:52:40 [0]: Executing: "CREATE INDEX file_source ON file(source)"
  145. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS dirs_scanned (    name TEXT PRIMARY KEY,    mtime INTEGER NOT NULL)"
  146. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS file_join (    file INTEGER PRIMARY KEY REFERENCES file(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER NOT NULL REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    album INTEGER REFERENCES album(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    albumpos INTEGER)"
  147. 22:52:40 [0]: Executing: "CREATE INDEX file_join_track  ON file_join(track)"
  148. 22:52:40 [0]: Executing: "CREATE INDEX file_join_artist ON file_join(artist)"
  149. 22:52:40 [0]: Executing: "CREATE INDEX file_join_album  ON file_join(album)"
  150. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  151. 22:52:40 [0]: Executing: "CREATE INDEX track_tags_tag ON track_tags(tag)"
  152. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS album_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  153. 22:52:40 [0]: Executing: "CREATE INDEX album_tags_tag ON album_tags(tag)"
  154. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  155. 22:52:40 [0]: Executing: "CREATE INDEX artist_tags_tag ON artist_tags(tag)"
  156. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       k TEXT NOT NULL,    v TEXT NOT NULL)"
  157. 22:52:40 [0]: Executing: "CREATE INDEX track_attrib_id ON track_attributes(id)"
  158. 22:52:40 [0]: Executing: "CREATE INDEX track_attrib_k  ON track_attributes(k)"
  159. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS collection_attributes (    id INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     k TEXT NOT NULL,    v TEXT NOT NULL)"
  160. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS social_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     k TEXT NOT NULL,    v TEXT NOT NULL,    timestamp INTEGER NOT NULL DEFAULT 0)"
  161. 22:52:40 [0]: Executing: "CREATE INDEX social_attrib_id        ON social_attributes(id)"
  162. 22:52:40 [0]: Executing: "CREATE INDEX social_attrib_source    ON social_attributes(source)"
  163. 22:52:40 [0]: Executing: "CREATE INDEX social_attrib_k         ON social_attributes(k)"
  164. 22:52:40 [0]: Executing: "CREATE INDEX social_attrib_timestamp ON social_attributes(timestamp)"
  165. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS playback_log (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    playtime INTEGER NOT NULL,                  secs_played INTEGER NOT NULL)"
  166. 22:52:40 [0]: Executing: "CREATE INDEX playback_log_source ON playback_log(source)"
  167. 22:52:40 [0]: Executing: "CREATE INDEX playback_log_track ON playback_log(track)"
  168. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS http_client_auth (    token TEXT NOT NULL PRIMARY KEY,    website TEXT NOT NULL,    name TEXT NOT NULL,    ua TEXT,    mtime INTEGER,    permissions TEXT NOT NULL)"
  169. 22:52:40 [0]: Executing: "CREATE TABLE IF NOT EXISTS settings (    k TEXT NOT NULL PRIMARY KEY,    v TEXT NOT NULL DEFAULT '')"
  170. 22:52:40 [0]: Executing: "INSERT INTO settings(k,v) VALUES('schema_version', '27')"
  171. 22:52:40 [0]: Database ID: "f0a09b14-9a27-45a6-af05-a17e1f4b5924"
  172. 22:52:41 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  173. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  174. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  175. 22:52:41 [0]: Failed to read contents of file: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js" "No such file or directory"
  176. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  177. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  178. 22:52:41 [0]: Failed to read contents of file: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js" "No such file or directory"
  179. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  180. 22:52:41 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  181. 22:52:41 [0]: Failed to read contents of file: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js" "No such file or directory"
  182. 22:52:41 [0]: Starting HTTPd on "127.0.0.1" 60210
  183. 22:52:41 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  184. 22:52:41 [0]: Servent listening on port 50210 - servent thread: QThread(0x104612ff0) - address mode: 1
  185. 22:52:41 [0]: External address mode set to upnp...
  186. 22:56:00 [0]: Error parsing JSON from Rovi! "" QMap(("searchResponse", QVariant(QVariantMap, QMap(("controlSet", QVariant(QVariantMap, QMap(("code", QVariant(qulonglong, 200) ) ( "messages" ,  QVariant(, ) ) ( "status" ,  QVariant(QString, "ok") ) )  ) ) ( "meta:id" ,  QVariant(QString, "tul1cpgpsrapp4:gwy:3kfyf") ) ( "results" ,  QVariant(QVariantList, (QVariant(QString, "") )  ) ) ( "totalResultCounts" ,  QVariant(qulonglong, 0) ) )  ) ) )  
  187. 22:56:04 [0]: Error parsing JSON from Rovi! "" QMap(("searchResponse", QVariant(QVariantMap, QMap(("controlSet", QVariant(QVariantMap, QMap(("code", QVariant(qulonglong, 200) ) ( "messages" ,  QVariant(, ) ) ( "status" ,  QVariant(QString, "ok") ) )  ) ) ( "meta:id" ,  QVariant(QString, "tul1cpgpsrapp3:gwy:2tncq") ) ( "results" ,  QVariant(QVariantList, (QVariant(QString, "") )  ) ) ( "totalResultCounts" ,  QVariant(qulonglong, 0) ) )  ) ) )  
  188. 23:03:01 [0]: Shutting down Tomahawk...
  189. 23:03:50 [0]: Finished shutdown.
  190. 23:09:10 [0]: Starting Tomahawk...
  191. 23:09:12 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  192. 23:09:12 [0]: Database ID: "f0a09b14-9a27-45a6-af05-a17e1f4b5924"
  193. 23:09:12 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  194. 23:09:12 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  195. 23:09:13 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/youtube/contents/code/youtube.js"
  196. 23:09:13 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  197. 23:09:13 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  198. 23:09:13 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  199. 23:09:13 [0]: QtScriptResolver::QtScriptResolver(const QString&) Failed loading JavaScript resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/jamendo/contents/code/jamendo.js"
  200. 23:09:13 [0]: Starting HTTPd on "127.0.0.1" 60210
  201. 23:09:13 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  202. 23:09:13 [0]: Servent listening on port 50210 - servent thread: QThread(0x104420e50) - address mode: 1
  203. 23:09:13 [0]: External address mode set to upnp...
  204. 23:17:34 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  205. 23:17:34 [0]: Object::connect:  (sender name:   'JabberConfig')
  206. 23:17:51 [0]: Shutting down Tomahawk...
  207. 23:18:52 [0]: Finished shutdown.
  208. 23:29:41 [0]: Starting Tomahawk...
  209. 23:29:43 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  210. 23:29:43 [0]: Database ID: "f0a09b14-9a27-45a6-af05-a17e1f4b5924"
  211. 23:29:45 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  212. 23:29:45 [0]: Starting HTTPd on "127.0.0.1" 60210
  213. 23:29:46 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  214. 23:29:46 [0]: Servent listening on port 50210 - servent thread: QThread(0x10460fa60) - address mode: 1
  215. 23:29:46 [0]: External address mode set to upnp...
  216. 23:39:21 [0]: Shutting down Tomahawk...
  217. 23:40:21 [0]: QMetaObject::invokeMethod: No such method QObject::scanDir(QDir,int)
  218. 23:40:22 [0]: Finished shutdown.
  219. 15:05:19 [0]: Starting Tomahawk...
  220. 15:05:20 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  221. 15:05:20 [0]: Database ID: "f0a09b14-9a27-45a6-af05-a17e1f4b5924"
  222. 15:05:21 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  223. 15:05:21 [0]: Starting HTTPd on "127.0.0.1" 60210
  224. 15:05:21 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  225. 15:05:21 [0]: Servent listening on port 50210 - servent thread: QThread(0x104412ff0) - address mode: 1
  226. 15:05:21 [0]: External address mode set to upnp...
  227. 15:29:24 [0]: Failed to connect to SIP: "afberger128@gmail.com" 1 "Internal Server Error"
  228. 15:29:34 [0]: Object::connect: No such slot GoogleWrapper::onError(SocketError)
  229. 17:47:12 [0]: Failed to connect to SIP: "afberger128@gmail.com" 1 "Internal Server Error"
  230. 17:47:21 [0]: Shutting down Tomahawk...
  231. 17:47:22 [0]: Finished shutdown.
  232. 23:37:57 [0]: Starting Tomahawk...
  233. 23:37:58 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  234. 23:37:58 [0]: Database ID: "f0a09b14-9a27-45a6-af05-a17e1f4b5924"
  235. 23:37:59 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  236. 23:37:59 [0]: Starting HTTPd on "127.0.0.1" 60210
  237. 23:37:59 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  238. 23:37:59 [0]: Servent listening on port 50210 - servent thread: QThread(0x104410370) - address mode: 1
  239. 23:37:59 [0]: External address mode set to upnp...
  240. 23:38:11 [0]: Shutting down Tomahawk...
  241. 23:38:11 [0]: Finished shutdown.
  242. 20:31:10 [0]: Starting Tomahawk...
  243. 20:31:11 [0]: Create tables... old version is 0
  244. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS oplog (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     guid TEXT NOT NULL,    command TEXT NOT NULL,    singleton BOOLEAN NOT NULL,    compressed BOOLEAN NOT NULL,    json TEXT NOT NULL)"
  245. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX oplog_guid ON oplog(guid)"
  246. 20:31:11 [0]: Executing: "CREATE INDEX oplog_source ON oplog(source)"
  247. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  248. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX artist_sortname ON artist(sortname)"
  249. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS track (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  250. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX track_artist_sortname ON track(artist,sortname)"
  251. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS album (    id INTEGER PRIMARY KEY AUTOINCREMENT,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    name TEXT NOT NULL,    sortname TEXT NOT NULL)"
  252. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX album_artist_sortname ON album(artist,sortname)"
  253. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS source (    id INTEGER PRIMARY KEY AUTOINCREMENT,    name TEXT NOT NULL,    friendlyname TEXT,    lastop TEXT NOT NULL DEFAULT "",           isonline BOOLEAN NOT NULL DEFAULT false)"
  254. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX source_name ON source(name)"
  255. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist (    guid TEXT PRIMARY KEY,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     shared BOOLEAN DEFAULT false,    title TEXT,    info TEXT,    creator TEXT,    lastmodified INTEGER NOT NULL DEFAULT 0,    currentrevision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED,    dynplaylist BOOLEAN DEFAULT false,    createdOn INTEGER NOT NULL DEFAULT 0)"
  256. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_item (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    trackname  TEXT NOT NULL,    artistname TEXT NOT NULL,    albumname  TEXT,    annotation TEXT,    duration INTEGER,           addedon INTEGER NOT NULL DEFAULT 0,       addedby INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     result_hint TEXT        )"
  257. 20:31:11 [0]: Executing: "CREATE INDEX playlist_item_playlist ON playlist_item(playlist)"
  258. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS playlist_revision (    guid TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    entries TEXT,     author INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    timestamp INTEGER NOT NULL DEFAULT 0,    previous_revision TEXT REFERENCES playlist_revision(guid) DEFERRABLE INITIALLY DEFERRED)"
  259. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist (    guid TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    pltype TEXT,     plmode INTEGER,     autoload BOOLEAN DEFAULT true )"
  260. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_controls (    id TEXT PRIMARY KEY,    playlist TEXT NOT NULL REFERENCES playlist(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    selectedType TEXT,    match TEXT,    input TEXT)"
  261. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS dynamic_playlist_revision (    guid TEXT PRIMARY KEY NOT NULL REFERENCES playlist_revision(guid) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    controls TEXT,     plmode INTEGER,    pltype TEXT)"
  262. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS file (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    url TEXT NOT NULL,                       size INTEGER NOT NULL,                   mtime INTEGER NOT NULL,                  md5 TEXT,                                mimetype TEXT,                           duration INTEGER NOT NULL DEFAULT 0,     bitrate INTEGER NOT NULL DEFAULT 0   )"
  263. 20:31:11 [0]: Executing: "CREATE UNIQUE INDEX file_url_src_uniq ON file(source, url)"
  264. 20:31:11 [0]: Executing: "CREATE INDEX file_source ON file(source)"
  265. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS dirs_scanned (    name TEXT PRIMARY KEY,    mtime INTEGER NOT NULL)"
  266. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS file_join (    file INTEGER PRIMARY KEY REFERENCES file(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    artist INTEGER NOT NULL REFERENCES artist(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER NOT NULL REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    album INTEGER REFERENCES album(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    albumpos INTEGER)"
  267. 20:31:11 [0]: Executing: "CREATE INDEX file_join_track  ON file_join(track)"
  268. 20:31:11 [0]: Executing: "CREATE INDEX file_join_artist ON file_join(artist)"
  269. 20:31:11 [0]: Executing: "CREATE INDEX file_join_album  ON file_join(album)"
  270. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  271. 20:31:11 [0]: Executing: "CREATE INDEX track_tags_tag ON track_tags(tag)"
  272. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS album_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  273. 20:31:11 [0]: Executing: "CREATE INDEX album_tags_tag ON album_tags(tag)"
  274. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS artist_tags (    id INTEGER PRIMARY KEY,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    tag TEXT NOT NULL,            ns TEXT,                      weight float DEFAULT 1.0  )"
  275. 20:31:11 [0]: Executing: "CREATE INDEX artist_tags_tag ON artist_tags(tag)"
  276. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS track_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       k TEXT NOT NULL,    v TEXT NOT NULL)"
  277. 20:31:11 [0]: Executing: "CREATE INDEX track_attrib_id ON track_attributes(id)"
  278. 20:31:11 [0]: Executing: "CREATE INDEX track_attrib_k  ON track_attributes(k)"
  279. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS collection_attributes (    id INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,     k TEXT NOT NULL,    v TEXT NOT NULL)"
  280. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS social_attributes (    id INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,       source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE,     k TEXT NOT NULL,    v TEXT NOT NULL,    timestamp INTEGER NOT NULL DEFAULT 0)"
  281. 20:31:11 [0]: Executing: "CREATE INDEX social_attrib_id        ON social_attributes(id)"
  282. 20:31:11 [0]: Executing: "CREATE INDEX social_attrib_source    ON social_attributes(source)"
  283. 20:31:11 [0]: Executing: "CREATE INDEX social_attrib_k         ON social_attributes(k)"
  284. 20:31:11 [0]: Executing: "CREATE INDEX social_attrib_timestamp ON social_attributes(timestamp)"
  285. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS playback_log (    id INTEGER PRIMARY KEY AUTOINCREMENT,    source INTEGER REFERENCES source(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    track INTEGER REFERENCES track(id) ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,    playtime INTEGER NOT NULL,                  secs_played INTEGER NOT NULL)"
  286. 20:31:11 [0]: Executing: "CREATE INDEX playback_log_source ON playback_log(source)"
  287. 20:31:11 [0]: Executing: "CREATE INDEX playback_log_track ON playback_log(track)"
  288. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS http_client_auth (    token TEXT NOT NULL PRIMARY KEY,    website TEXT NOT NULL,    name TEXT NOT NULL,    ua TEXT,    mtime INTEGER,    permissions TEXT NOT NULL)"
  289. 20:31:11 [0]: Executing: "CREATE TABLE IF NOT EXISTS settings (    k TEXT NOT NULL PRIMARY KEY,    v TEXT NOT NULL DEFAULT '')"
  290. 20:31:11 [0]: Executing: "INSERT INTO settings(k,v) VALUES('schema_version', '27')"
  291. 20:31:11 [0]: Database ID: "c9dcd97c-deb5-42ed-a5b6-48a6b6883386"
  292. 20:31:12 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  293. 20:31:12 [0]: Starting HTTPd on "127.0.0.1" 60210
  294. 20:31:12 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  295. 20:31:12 [0]: Servent listening on port 50210 - servent thread: QThread(0x1044240d0) - address mode: 1
  296. 20:31:12 [0]: External address mode set to upnp...
  297. 20:31:15 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  298. 20:31:50 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  299. 20:31:50 [0]: Object::connect:  (sender name:   'JabberConfig')
  300. 20:49:06 [0]: Shutting down Tomahawk...
  301. 20:49:08 [0]: Finished shutdown.
  302. 20:49:23 [0]: Starting Tomahawk...
  303. 20:49:23 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  304. 20:49:23 [0]: Database ID: "c9dcd97c-deb5-42ed-a5b6-48a6b6883386"
  305. 20:49:23 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  306. 20:49:23 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  307. 20:49:24 [0]: Starting HTTPd on "127.0.0.1" 60210
  308. 20:49:24 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  309. 20:49:24 [0]: Servent listening on port 50210 - servent thread: QThread(0x104412ff0) - address mode: 1
  310. 20:49:24 [0]: External address mode set to upnp...
  311. 20:51:57 [0]: Starting new song: "http://api.soundcloud.com/tracks/23163097/stream.json?client_id=TiNg2DRYhBnp01DA3zNag"
  312. 20:51:57 [0]: LastFmPlugin::nowPlaying no m_scrobbler, or cannot convert input!
  313. 20:51:57 [0]: No scrobbler!
  314. 20:52:00 [0]: QTimeLine::setPaused: Not running
  315. 20:52:01 [0]: QTimeLine::resume: already running
  316. 20:52:04 [0]: Starting new song: "http://api.soundcloud.com/tracks/38289179/stream.json?client_id=TiNg2DRYhBnp01DA3zNag"
  317. 20:52:04 [0]: LastFmPlugin::nowPlaying no m_scrobbler, or cannot convert input!
  318. 20:52:04 [0]: No scrobbler!
  319. 20:56:09 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  320. 20:56:09 [0]: Object::connect:  (sender name:   'SpotifyConfig')
  321. 20:59:12 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  322. 20:59:12 [0]: Object::connect:  (sender name:   'SpotifyConfig')
  323. 21:01:21 [0]: Object::connect: No such signal QWidget::sizeHintChanged()
  324. 21:01:21 [0]: Object::connect:  (sender name:   'SpotifyConfig')
  325. 21:02:14 [0]: Starting new song: "http://api.soundcloud.com/tracks/31079560/stream.json?client_id=TiNg2DRYhBnp01DA3zNag"
  326. 21:02:14 [0]: LastFmPlugin::nowPlaying no m_scrobbler, or cannot convert input!
  327. 21:02:14 [0]: No scrobbler!
  328. 21:04:17 [0]: Shutting down Tomahawk...
  329. 21:04:23 [0]: Finished shutdown.
  330. 09:51:13 [0]: Starting Tomahawk...
  331. 09:51:13 [2]: Setting NAM.
  332. 09:51:13 [5]: creating initial gui thread ( QThread(0x10460ce20) ) nam
  333. 09:51:13 [1]: Init AudioEngine
  334. 09:51:14 [1]: AudioEngine::AudioEngine() Connecting privacy toggle
  335. 09:51:14 [8]: void AudioEngine::setVolume(int) 75
  336. 09:51:14 [1]: Tomahawk::Pipeline::Pipeline(QObject*) Using 4 threads
  337. 09:51:14 [1]: Init Database.
  338. 09:51:14 [5]: Using database: "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db"
  339. 09:51:14 [0]: Database schema of "/Users/alexberger/Library/Application Support/Tomahawk/tomahawk.db" is 27
  340. 09:51:14 [0]: Database ID: "c9dcd97c-deb5-42ed-a5b6-48a6b6883386"
  341. 09:51:14 [9]: CTOR DatabaseWorker DatabaseWorker(0x1044afec0)
  342. 09:51:14 [9]: Database::Database(const QString&, QObject*) Using 4 threads
  343. 09:51:14 [1]: Init Echonest Factory.
  344. 09:51:14 [1]: Init Database Factory.
  345. 09:51:14 [9]: Max fd: 10240
  346. 09:51:14 [1]: Init InfoSystem.
  347. 09:51:14 [9]: Tomahawk::InfoSystem::InfoSystem::InfoSystem(QObject*)
  348. 09:51:14 [1]: Tomahawk::InfoSystem::InfoSystemCacheThread::InfoSystemCacheThread(QObject*)
  349. 09:51:14 [1]: Tomahawk::InfoSystem::InfoSystemWorkerThread::InfoSystemWorkerThread(QObject*)
  350. 09:51:14 [1]: Init MainWindow.
  351. 09:51:14 [1]: Tomahawk::InfoSystem::InfoSystemWorker::InfoSystemWorker()
  352. 09:51:14 [1]: Tomahawk::InfoSystem::InfoSystemCache::InfoSystemCache(QObject*)
  353. 09:51:14 [5]: void AudioControls::onPlaybackStopped()
  354. 09:51:14 [9]: CTOR DatabaseWorker DatabaseWorker(0x1044d4d20)
  355. 09:51:14 [9]: AlbumModel::AlbumModel(QObject*)
  356. 09:51:14 [9]: CTOR DatabaseWorker DatabaseWorker(0x1044d7ee0)
  357. 09:51:14 [9]: AlbumModel::AlbumModel(QObject*)
  358. 09:51:14 [9]: QueueProxyModel::QueueProxyModel(TrackView*)
  359. 09:51:15 [9]: Checking directory for plugins:  QDir( "/Applications" , nameFilters = { * },  QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) )  
  360. 09:51:15 [9]: Checking directory for plugins:  QDir( "/usr/local/lib" , nameFilters = { * },  QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) )  
  361. 09:51:15 [9]: Checking directory for plugins:  QDir( "/" , nameFilters = { * },  QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) )  
  362. 09:51:15 [9]: Checking directory for plugins:  QDir( "/Applications/Tomahawk.app/Contents/MacOS" , nameFilters = { * },  QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) )  
  363. 09:51:15 [9]: Trying to load plugin: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipgoogle.dylib"
  364. 09:51:15 [9]: Loaded plugin factory: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipgoogle.dylib" "sipgoogle" "Google"
  365. 09:51:15 [9]: Trying to load plugin: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipjabber.dylib"
  366. 09:51:15 [9]: Loaded plugin factory: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipjabber.dylib" "sipjabber" "Jabber"
  367. 09:51:15 [9]: Trying to load plugin: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_siptwitter.dylib"
  368. 09:51:15 [9]: Loaded plugin factory: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_siptwitter.dylib" "siptwitter" "Twitter"
  369. 09:51:15 [9]: Trying to load plugin: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipzeroconf.dylib"
  370. 09:51:15 [9]: Loaded plugin factory: "/Applications/Tomahawk.app/Contents/MacOS/libtomahawk_sipzeroconf.dylib" "sipzeroconf" "Local Network"
  371. 09:51:15 [9]: View page shown: "Welcome to Tomahawk"
  372. 09:51:15 [1]: Init Local Collection.
  373. 09:51:15 [9]: Tomahawk::Collection::Collection(const Tomahawk::source_ptr&, const QString&, QObject*) "dbcollection:My Collection" "My Collection"
  374. 09:51:15 [9]: CTOR DatabaseWorker DatabaseWorker(0x10469e7c0)
  375. 09:51:15 [9]: CTOR DatabaseWorker DatabaseWorker(0x10469eff0)
  376. 09:51:15 [1]: Init Pipeline.
  377. 09:51:15 [1]: Adding resolver "DatabaseResolver"
  378. 09:51:15 [0]: ScriptResolver::ScriptResolver(const QString&) Created script resolver: "/Applications/Tomahawk.app/Contents/MacOS/spotify_tomahawkresolver"
  379. 09:51:15 [0]: QtScriptResolver::QtScriptResolver(const QString&) Loading JS resolver: "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js"
  380. 09:51:16 [9]: Resolver has a preferences widget! compressed? false
  381. 09:51:16 [9]: JS "/Users/alexberger/Library/Application Support/Tomahawk/atticaresolvers/soundcloud/contents/code/soundcloud.js" READY, name "SoundCloud" weight 85 timeout 15000
  382. 09:51:16 [1]: Adding resolver "SoundCloud"
  383. 09:51:16 [9]: Plugin paths:  ("/Applications/Tomahawk.app/Contents/PlugIns", "")
  384. 09:51:16 [9]: Trying to load Attica plugin:  "/Applications/Tomahawk.app/Contents/PlugIns/attica_kde.so"
  385. 09:51:16 [9]: Trying to load Attica plugin:  "/attica_kde.so"
  386. 09:51:16 [9]: Using Attica without KDE support
  387. 09:51:16 [0]: Starting HTTPd on "127.0.0.1" 60210
  388. 09:51:16 [1]: Init Scrobbler.
  389. 09:51:16 [1]: Using system locale: "en_US"
  390. 09:51:16 [1]: void Tomahawk::Pipeline::start() Shunting this many pending queries: 0
  391. 09:51:16 [1]: void Tomahawk::InfoSystem::InfoSystem::init()
  392. 09:51:16 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  393. 09:51:16 [8]: WhatsHot: requested InfoChartCapabilities
  394. 09:51:16 [1]: void Tomahawk::InfoSystem::InfoSystemWorker::init(Tomahawk::InfoSystem::InfoSystemCache*)
  395. 09:51:16 [9]: Tomahawk::InfoSystem::EchoNestPlugin::EchoNestPlugin()
  396. 09:51:16 [1]: TomahawkUtils::NetworkProxyFactory* TomahawkUtils::proxyFactory(bool)
  397. 09:51:16 [1]: virtual TomahawkUtils::NetworkProxyFactory& TomahawkUtils::NetworkProxyFactory::operator=(const TomahawkUtils::NetworkProxyFactory&)
  398. 09:51:16 [5]: created new nam for thread  Tomahawk::InfoSystem::InfoSystemWorkerThread(0x104669450)
  399. 09:51:16 [9]: Tomahawk::InfoSystem::MusixMatchPlugin::MusixMatchPlugin()
  400. 09:51:16 [9]: Tomahawk::InfoSystem::MusicBrainzPlugin::MusicBrainzPlugin()
  401. 09:51:16 [1]: void Tomahawk::InfoSystem::hypemPlugin::chartTypes() Got hypem types
  402. 09:51:16 [9]: hypemPlugin:Chartstype:  QMap(("Hype Machine", QVariant(QVariantMap, QMap(("Artists", QVariant(QList<Tomahawk::InfoSystem::InfoStringHash>, ) ) ( "Recent by Tag" ,  QVariant(QList<Tomahawk::InfoSystem::InfoStringHash>, ) ) ( "Tracks" ,  QVariant(QList<Tomahawk::InfoSystem::InfoStringHash>, ) ) )  ) ) )  
  403. 09:51:16 [9]: Tomahawk::InfoSystem::AdiumPlugin::AdiumPlugin()
  404. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  405. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap()
  406. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  407. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap()
  408. 09:51:16 [9]: selectRequested for idx QModelIndex(1,0,0x10fb54140,SourcesModel(0x10fb52f30) )  "Dashboard" QModelIndex(1,0,0x10fb59be0,SourcesProxyModel(0x10fb54d40) )  "Dashboard"
  409. 09:51:16 [9]: Select request for: QModelIndex(1,0,0x10fb59be0,SourcesProxyModel(0x10fb54d40) )  "Dashboard" false
  410. 09:51:16 [9]: expanding source QModelIndex(1,0,0x10469d960,SourcesModel(0x10fb52f30) )  CollectionItem(0x10469d960)
  411. 09:51:16 [0]: void SourceList::setSources(const QList<QSharedPointer<Tomahawk::Source> >&) - Total sources now: 1
  412. 09:51:16 [1]: Init Servent.
  413. 09:51:16 [0]: Servent listening on port 50210 - servent thread: QThread(0x10460ce20) - address mode: 1
  414. 09:51:16 [0]: External address mode set to upnp...
  415. 09:51:16 [9]: Doing queryL "SELECT id, v FROM collection_attributes WHERE k = "echonest_song""
  416. 09:51:16 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- filelocationhash doesn't contain criteria val
  417. 09:51:16 [9]: emitting expand for idx QModelIndex(1,0,0x10469d960,SourcesModel(0x10fb52f30) )  "My Collection" QModelIndex(1,0,0x10fb56320,SourcesProxyModel(0x10fb54d40) )  "My Collection"
  418. 09:51:16 [9]: Expanding idx QModelIndex(1,0,0x10fb56320,SourcesProxyModel(0x10fb54d40) )  "My Collection"
  419. 09:51:16 [8]: WhatsHot:: left crumb changed QVariant(QString, "Hyped Artists")
  420. 09:51:16 [9]: Making infosystem request for chart of type: "chart.getHypedArtists"
  421. 09:51:16 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  422. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  423. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap(("whatshot_side", QVariant(QString, "left") ) )  
  424. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  425. 09:51:16 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap(("whatshot_side", QVariant(QString, "left") ) )  
  426. 09:51:16 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  427. 09:51:16 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  428. 09:51:16 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  429. 09:51:17 [8]: WhatsHot:: left crumb changed QVariant(QString, "Top Overall")
  430. 09:51:17 [9]: Making infosystem request for chart of type: "f5d276e9ef462ee752690b187ced0227"
  431. 09:51:17 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  432. 09:51:17 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  433. 09:51:17 [9]: virtual void Tomahawk::InfoSystem::SpotifyPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap(("whatshot_side", QVariant(QString, "left") ) )  
  434. 09:51:17 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) "WhatsHotWidget"
  435. 09:51:17 [9]: virtual void Tomahawk::InfoSystem::hypemPlugin::getInfo(Tomahawk::InfoSystem::InfoRequestData) QMap(("whatshot_side", QVariant(QString, "left") ) )  
  436. 09:51:17 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- filelocationhash empty
  437. 09:51:17 [8]: virtual void Tomahawk::InfoSystem::hypemPlugin::notInCacheSlot(QHash<QString, QString>, Tomahawk::InfoSystem::InfoRequestData) InfoChartCapabilities not in cache! Fetching...
  438. 09:51:17 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- filelocationhash doesn't contain criteria val
  439. 09:51:17 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  440. 09:51:17 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  441. 09:51:17 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- filelocationhash empty
  442. 09:51:17 [8]: WhatsHot:: left crumb changed QVariant(QString, "Top Overall")
  443. 09:51:17 [8]: WhatsHot:: left crumb changed QVariant(QString, "Top Overall")
  444. 09:51:17 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) WhatsHot: Could not parse output
  445. 09:51:17 [9]: Removed stale cache file "/Users/alexberger/Library/Caches/Tomahawk/Tomahawk/InfoSystemCache/51/7d412d8b5036a07fb90cad9e4303609a.1330663764367"
  446. 09:51:17 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- file was stale
  447. 09:51:17 [8]: virtual void Tomahawk::InfoSystem::ChartsPlugin::notInCacheSlot(QHash<QString, QString>, Tomahawk::InfoSystem::InfoRequestData) InfoChart not in cache! Fetching...
  448. 09:51:17 [8]: virtual void Tomahawk::InfoSystem::ChartsPlugin::notInCacheSlot(QHash<QString, QString>, Tomahawk::InfoSystem::InfoRequestData) Getting chart url  QUrl( "http://charts.tomahawk-player.org/source/itunes/chart/f5d276e9ef462ee752690b187ced0227" )  
  449. 09:51:17 [9]: Adding provider "http://bakery.tomahawk-player.org:10480/resolvers/v1/"
  450. 09:51:17 [9]: Resolver has a preferences widget! compressed? true
  451. 09:51:17 [9]: Loading resolvers from cache dir: "/Users/alexberger/Library/Application Support/Tomahawk/atticacache"
  452. 09:51:17 [9]: Currently we know about these resolvers: ("dilandau", "youtube", "4shared", "soundcloud", "exfm", "officialfm", "lastfm", "grooveshark", "jamendo", "ampache")
  453. 09:51:18 [1]: ChartsPlugin:     got  100  albums
  454. 09:51:18 [9]: void Tomahawk::InfoSystem::InfoSystemCache::updateCacheSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoType, QVariant)
  455. 09:51:18 [9]: AlbumModel::AlbumModel(QObject*)
  456. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "21" By "ADELE"
  457. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "WZRD" By "WZRD"
  458. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Best of the Monkees" By "The Monkees"
  459. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Some Nights" By "Fun."
  460. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Black Radio" By "Robert Glasper"
  461. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Making Mirrors" By "Gotye"
  462. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Mylo Xyloto" By "Coldplay"
  463. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "19" By "ADELE"
  464. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "El Camino" By "The Black Keys"
  465. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Whitney - The Greatest Hits" By "Whitney Houston"
  466. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Barton Hollow" By "The Civil Wars"
  467. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Sigh No More" By "Mumford & Sons"
  468. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "All Of Me (Deluxe Version)" By "Estelle"
  469. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Under Fire" By "Green River Ordinance"
  470. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Tailgates & Tanlines" By "Luke Bryan"
  471. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Roses (Deluxe Edition)" By "The Cranberries"
  472. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Wall (Deluxe Experience Edition) [Remastered]" By "Pink Floyd"
  473. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Stronger (Deluxe Version)" By "Kelly Clarkson"
  474. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "1" By "The Beatles"
  475. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "This Ole Boy" By "Craig Morgan"
  476. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Own the Night" By "Lady Antebellum"
  477. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "My Kinda Party" By "Jason Aldean"
  478. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Chief" By "Eric Church"
  479. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Release Me" By "Lyle Lovett"
  480. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Torches" By "Foster the People"
  481. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Wall (Remastered)" By "Pink Floyd"
  482. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Born to Die" By "Lana Del Rey"
  483. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Into the Woods - EP" By "Of Monsters and Men"
  484. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Drive (Original Motion Picture Soundtrack)" By "Various Artists"
  485. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "A State of Trance 2012" By "Armin van Buuren"
  486. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Wrecking Ball (Special Edition)" By "Bruce Springsteen"
  487. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Alive" By "BIGBANG"
  488. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Act of Valor" By "Various Artists"
  489. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "NOW That's What I Call Music Vol. 41" By "Various Artists"
  490. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Brothers (Deluxe Version)" By "The Black Keys"
  491. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Twilight Saga: Breaking Dawn - Pt. 1 (Original Motion Picture Soundtrack) [Deluxe Version]" By "Various Artists"
  492. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Reign of Terror" By "Sleigh Bells"
  493. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "A Different Kind of Truth" By "Van Halen"
  494. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Believer (Deluxe Edition)" By "Kutless"
  495. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Mayhem" By "Imelda May"
  496. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Best of Pink Floyd: A Foot In the Door (Remastered)" By "Pink Floyd"
  497. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "No Sweat - EP" By "Radical Something"
  498. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Red River Blue (Deluxe Version)" By "Blake Shelton"
  499. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Doo-Wops & Hooligans (Deluxe Version)" By "Bruno Mars"
  500. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Band Perry" By "The Band Perry"
  501. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Hunger Games: Songs from District 12 and Beyond" By "Various Artists"
  502. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Up All Night" By "One Direction"
  503. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Eclipse" By "Veil of Maya"
  504. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Ceremonials" By "Florence + The Machine"
  505. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Hurry Up, We're Dreaming." By "M83"
  506. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Here and Now" By "Nickelback"
  507. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Halfway to Heaven (Deluxe Edition)" By "Brantley Gilbert"
  508. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Born to Die (Deluxe Version)" By "Lana Del Rey"
  509. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Megalithic Symphony" By "AWOLNATION"
  510. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Home" By "Dierks Bentley"
  511. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Four the Record" By "Miranda Lambert"
  512. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Mona" By "Mona"
  513. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Scars & Stories (Deluxe Version)" By "The Fray"
  514. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Bon Iver" By "Bon Iver"
  515. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Ceremonials (Deluxe Version)" By "Florence + The Machine"
  516. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "You Get What You Give (Deluxe Version)" By "Zac Brown Band"
  517. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "4" By "Beyonc�"
  518. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Lungs" By "Florence + The Machine"
  519. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Speak Now" By "Taylor Swift"
  520. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Hell On Heels" By "Pistol Annies"
  521. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Fresh Beat Band (Music from the Hit TV Show)" By "The Fresh Beat Band"
  522. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Crave" By "for KING & COUNTRY"
  523. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Legend (Remastered) [Bonus Tracks]" By "Bob Marley"
  524. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Mean What You Say" By "Sent By Ravens"
  525. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Dark Side of the Moon (Remastered)" By "Pink Floyd"
  526. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Hats Off to the Bull" By "Chevelle"
  527. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "A Different Kind of Truth (Deluxe Version)" By "Van Halen"
  528. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Dark Side of the Moon (Deluxe Experience Version) [Remastered]" By "Pink Floyd"
  529. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Wasting Light (Deluxe Version)" By "Foo Fighters"
  530. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Up All Night (Deluxe Version)" By "One Direction"
  531. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Young the Giant" By "Young the Giant"
  532. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Feel So Close" By "Calvin Harris"
  533. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "F�rmula, Vol. 1" By "Romeo Santos"
  534. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Foundation (Deluxe Version)" By "Zac Brown Band"
  535. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Lights" By "Ellie Goulding"
  536. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "UKF Dubstep 2011" By "Various Artists"
  537. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "UKF Dubstep 2010" By "Various Artists"
  538. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Young Love" By "Mat Kearney"
  539. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "My World 2.0 (Bonus Track Version)" By "Justin Bieber"
  540. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "4x4=12 (Deluxe Version)" By "deadmau5"
  541. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Fearless" By "Taylor Swift"
  542. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Ultimate Hits: Rock and Roll Never Forgets" By "Bob Seger & The Silver Bullet Band"
  543. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Bright Lights - EP" By "Gary Clark Jr."
  544. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "The Head and the Heart" By "The Head and the Heart"
  545. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Confessions" By "Usher"
  546. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Hands All Over (Deluxe Version)" By "Maroon 5"
  547. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Visions" By "Grimes"
  548. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "New Multitudes (Deluxe Edition)" By "Jay Farrar, Will Johnson, Anders Parker & Yim Yames"
  549. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Passive Me Aggressive You" By "The Naked and Famous"
  550. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Clear As Day" By "Scotty McCreery"
  551. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Old Ideas" By "Leonard Cohen"
  552. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Barefoot Blue Jean Night" By "Jake Owen"
  553. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "For Emma, Forever Ago" By "Bon Iver"
  554. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Where I Find You" By "Kari Jobe"
  555. 09:51:18 [8]: void WhatsHotWidget::infoSystemInfo(Tomahawk::InfoSystem::InfoRequestData, QVariant) Getting album "Settle Down - EP" By "Kimbra"
  556. 09:51:18 [9]: Trying to setup portfwd on 50210
  557. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  558. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  559. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  560. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  561. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  562. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  563. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  564. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  565. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  566. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  567. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  568. 09:51:18 [9]: bool Tomahawk::InfoSystem::InfoSystem::getInfo(const Tomahawk::InfoSystem::InfoRequestData&)
  569. 09:51:18 [1]: External servent address detected as "71.32.93.240" : 50210
  570. 09:51:18 [9]: Max upstream   13067 bps
  571. 09:51:18 [9]: Max downstream 73892 bps
  572. 09:51:18 [2]: Connecting SIP classes
  573. 09:51:18 [9]: ZeroconfPlugin::ZeroconfPlugin(const QString&)
  574. 09:51:18 [9]: TomahawkZeroconf::TomahawkZeroconf(int, QObject*)
  575. 09:51:18 [9]: Advertising us on the LAN
  576. 09:51:18 [9]: JabberPlugin::JabberPlugin(const QString&)
  577. 09:51:19 [9]: void Tomahawk::InfoSystem::InfoSystemCache::getCachedInfoSlot(Tomahawk::InfoSystem::InfoStringHash, qint64, Tomahawk::InfoSystem::InfoRequestData) notInCache -- filelocationhash empty
  578. 09:51:19 [9]: ("random", "md5", "sha1", "keystorelist", "sha0", "ripemd160", "md2", "md4", "sha224", "sha256", "sha384", "sha512", "hmac(md5)", "hmac(sha1)", "hmac(sha224)", "hmac(sha256)", "hmac(sha384)", "hmac(sha512)", "hmac(ripemd160)", "aes128-ecb", "aes128-cfb", "aes128-cbc", "aes128-cbc-pkcs7", "aes128-ofb", "aes192-ecb", "aes192-cfb", "aes192-cbc", "aes192-cbc-pkcs7", "aes192-ofb", "aes256-ecb", "aes256-cbc", "aes256-cbc-pkcs7", "aes256-cfb", "aes256-ofb", "blowfish-ecb", "blowfish-cbc-pkcs7", "blowfish-cbc", "blowfish-cfb", "blowfish-ofb", "tripledes-ecb", "tripledes-cbc", "des-ecb", "des-ecb-pkcs7", "des-cbc", "des-cbc-pkcs7", "des-cfb", "des-ofb", "cast5-ecb", "cast5-cbc", "cast5-cbc-pkcs7", "cast5-cfb", "cast5-ofb", "pbkdf1(md2)", "pbkdf1(sha1)", "pbkdf2(sha1)", "pkey", "dlgroup", "rsa", "dsa", "dh", "cert", "csr", "crl", "certcollection", "pkcs12", "tls", "cms", "ca")