Advertisement
ebaydan777

Untitled

Jul 10th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 320.42 KB | None | 0 0
  1. 2014-07-10 13:14:42 INFO MAIN :: Checking database structure...
  2. 2014-07-10 13:14:42 DEBUG MAIN :: Checking Initial Schema database upgrade
  3. 2014-07-10 13:14:42 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  4. 2014-07-10 13:14:42 INFO MAIN :: Database upgrade required: Initial Schema
  5. 2014-07-10 13:14:42 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('tv_shows',)
  6. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  7. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE db_version (db_version INTEGER);
  8. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE history (action NUMERIC, date NUMERIC, showid NUMERIC, season NUMERIC, episode NUMERIC, quality NUMERIC, resource TEXT, provider TEXT)
  9. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE imdb_info (indexer_id INTEGER PRIMARY KEY, imdb_id TEXT, title TEXT, year NUMERIC, akas TEXT, runtimes NUMERIC, genres TEXT, countries TEXT, country_codes TEXT, certificates TEXT, rating TEXT, votes INTEGER, last_update NUMERIC)
  10. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE info (last_backlog NUMERIC, last_indexer NUMERIC, last_proper_search NUMERIC)
  11. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE scene_numbering(indexer TEXT, indexer_id INTEGER, season INTEGER, episode INTEGER,scene_season INTEGER, scene_episode INTEGER, PRIMARY KEY(indexer_id, season, episode))
  12. 2014-07-10 13:14:43 DB MAIN :: sickbeard.db: CREATE TABLE tv_shows (show_id INTEGER PRIMARY KEY, indexer_id NUMERIC, indexer TEXT, show_name TEXT, location TEXT, network TEXT, genre TEXT, classification TEXT, runtime NUMERIC, quality NUMERIC, airs TEXT, status TEXT, flatten_folders NUMERIC, paused NUMERIC, startyear NUMERIC, air_by_date NUMERIC, lang TEXT, subtitles NUMERIC, notify_list TEXT, imdb_id TEXT, last_update_indexer NUMERIC, dvdorder NUMERIC, archive_firstmatch NUMERIC, rls_require_words TEXT, rls_ignore_words TEXT, sports NUMERIC);
  13. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE TABLE tv_episodes (episode_id INTEGER PRIMARY KEY, showid NUMERIC, indexerid NUMERIC, indexer TEXT, name TEXT, season NUMERIC, episode NUMERIC, description TEXT, airdate NUMERIC, hasnfo NUMERIC, hastbn NUMERIC, status NUMERIC, location TEXT, file_size NUMERIC, release_name TEXT, subtitles TEXT, subtitles_searchcount NUMERIC, subtitles_lastsearch TIMESTAMP, is_proper NUMERIC, scene_season NUMERIC, scene_episode NUMERIC);
  14. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE UNIQUE INDEX idx_indexer_id ON tv_shows (indexer_id)
  15. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE INDEX idx_showid ON tv_episodes (showid);
  16. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE INDEX idx_sta_epi_air ON tv_episodes (status,episode, airdate);
  17. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE INDEX idx_sta_epi_sta_air ON tv_episodes (season,episode, status, airdate);
  18. 2014-07-10 13:14:44 DB MAIN :: sickbeard.db: CREATE INDEX idx_status ON tv_episodes (status,season,episode,airdate);
  19. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: CREATE INDEX idx_tv_episodes_showid_airdate ON tv_episodes(showid,airdate)
  20. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: INSERT INTO db_version (db_version) VALUES (31);
  21. 2014-07-10 13:14:45 DEBUG MAIN :: InitialSchema upgrade completed
  22. 2014-07-10 13:14:45 DEBUG MAIN :: Checking Add Size And Scene Name Fields database upgrade
  23. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  24. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  25. 2014-07-10 13:14:45 DEBUG MAIN :: AddSizeAndSceneNameFields upgrade not required
  26. 2014-07-10 13:14:45 DEBUG MAIN :: Checking Rename Season Folders database upgrade
  27. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  28. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  29. 2014-07-10 13:14:45 DEBUG MAIN :: RenameSeasonFolders upgrade not required
  30. 2014-07-10 13:14:45 DEBUG MAIN :: Checking Add1080p And Raw Qualities database upgrade
  31. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  32. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  33. 2014-07-10 13:14:45 DEBUG MAIN :: Add1080pAndRawHDQualities upgrade not required
  34. 2014-07-10 13:14:45 DEBUG MAIN :: Checking Add Showid Tvdbid Index database upgrade
  35. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  36. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  37. 2014-07-10 13:14:45 DEBUG MAIN :: AddShowidTvdbidIndex upgrade not required
  38. 2014-07-10 13:14:45 DEBUG MAIN :: Checking Add Last Update database upgrade
  39. 2014-07-10 13:14:45 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  40. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  41. 2014-07-10 13:14:46 DEBUG MAIN :: AddLastUpdateTVDB upgrade not required
  42. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Increase To15 database upgrade
  43. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  44. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  45. 2014-07-10 13:14:46 DEBUG MAIN :: AddDBIncreaseTo15 upgrade not required
  46. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Db Info database upgrade
  47. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  48. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  49. 2014-07-10 13:14:46 DEBUG MAIN :: AddIMDbInfo upgrade not required
  50. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Proper Naming Support database upgrade
  51. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  52. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  53. 2014-07-10 13:14:46 DEBUG MAIN :: AddProperNamingSupport upgrade not required
  54. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Email Subscription Table database upgrade
  55. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  56. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  57. 2014-07-10 13:14:46 DEBUG MAIN :: AddEmailSubscriptionTable upgrade not required
  58. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Proper Search database upgrade
  59. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  60. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  61. 2014-07-10 13:14:46 DEBUG MAIN :: AddProperSearch upgrade not required
  62. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Dvd Order Option database upgrade
  63. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  64. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  65. 2014-07-10 13:14:46 DEBUG MAIN :: AddDvdOrderOption upgrade not required
  66. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Add Subtitles Support database upgrade
  67. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  68. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  69. 2014-07-10 13:14:46 DEBUG MAIN :: AddSubtitlesSupport upgrade not required
  70. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Convert Shows To Indexer Scheme database upgrade
  71. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  72. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  73. 2014-07-10 13:14:46 DEBUG MAIN :: ConvertTVShowsToIndexerScheme upgrade not required
  74. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Convert Episodes To Indexer Scheme database upgrade
  75. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  76. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  77. 2014-07-10 13:14:46 DEBUG MAIN :: ConvertTVEpisodesToIndexerScheme upgrade not required
  78. 2014-07-10 13:14:46 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  79. 2014-07-10 13:14:46 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  80. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  81. 2014-07-10 13:14:47 DEBUG MAIN :: ConvertIMDBInfoToIndexerScheme upgrade not required
  82. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  83. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  84. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  85. 2014-07-10 13:14:47 DEBUG MAIN :: ConvertInfoToIndexerScheme upgrade not required
  86. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Archive First Match Option database upgrade
  87. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  88. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  89. 2014-07-10 13:14:47 DEBUG MAIN :: AddArchiveFirstMatchOption upgrade not required
  90. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Scene Numbering database upgrade
  91. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  92. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  93. 2014-07-10 13:14:47 DEBUG MAIN :: AddSceneNumbering upgrade not required
  94. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Convert Indexer To Integer database upgrade
  95. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  96. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  97. 2014-07-10 13:14:47 DEBUG MAIN :: ConvertIndexerToInteger upgrade not required
  98. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Require And Ignore Words database upgrade
  99. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  100. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  101. 2014-07-10 13:14:47 DEBUG MAIN :: AddRequireAndIgnoreWords upgrade not required
  102. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Sports Option database upgrade
  103. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  104. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  105. 2014-07-10 13:14:47 DEBUG MAIN :: AddSportsOption upgrade not required
  106. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Scene Numbering To Tv Episodes database upgrade
  107. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  108. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  109. 2014-07-10 13:14:47 DEBUG MAIN :: AddSceneNumberingToTvEpisodes upgrade not required
  110. 2014-07-10 13:14:47 DEBUG MAIN :: Checking Add Anime Show database upgrade
  111. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  112. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  113. 2014-07-10 13:14:47 INFO MAIN :: Database upgrade required: Add Anime Show
  114. 2014-07-10 13:14:47 INFO MAIN :: Backing up database before upgrade
  115. 2014-07-10 13:14:47 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v32
  116. 2014-07-10 13:14:47 DEBUG MAIN :: Backup done
  117. 2014-07-10 13:14:47 INFO MAIN :: Proceeding with upgrade
  118. 2014-07-10 13:14:47 INFO MAIN :: Adding column anime to tv_episodes
  119. 2014-07-10 13:14:47 DB MAIN :: sickbeard.db: ALTER TABLE tv_shows ADD anime NUMERIC
  120. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: UPDATE tv_shows SET anime = ? with args ('0',)
  121. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  122. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  123. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [32]
  124. 2014-07-10 13:14:48 DEBUG MAIN :: AddAnimeTVShow upgrade completed
  125. 2014-07-10 13:14:48 DEBUG MAIN :: Checking Add Absolute Numbering database upgrade
  126. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  127. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  128. 2014-07-10 13:14:48 INFO MAIN :: Database upgrade required: Add Absolute Numbering
  129. 2014-07-10 13:14:48 INFO MAIN :: Backing up database before upgrade
  130. 2014-07-10 13:14:48 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v33
  131. 2014-07-10 13:14:48 DEBUG MAIN :: Backup done
  132. 2014-07-10 13:14:48 INFO MAIN :: Proceeding with upgrade
  133. 2014-07-10 13:14:48 INFO MAIN :: Adding column absolute_number to tv_episodes
  134. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: ALTER TABLE tv_episodes ADD absolute_number NUMERIC
  135. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: UPDATE tv_episodes SET absolute_number = ? with args ('0',)
  136. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  137. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  138. 2014-07-10 13:14:48 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [33]
  139. 2014-07-10 13:14:49 DEBUG MAIN :: AddAbsoluteNumbering upgrade completed
  140. 2014-07-10 13:14:49 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  141. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  142. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  143. 2014-07-10 13:14:49 INFO MAIN :: Database upgrade required: Add Scene Absolute Numbering
  144. 2014-07-10 13:14:49 INFO MAIN :: Backing up database before upgrade
  145. 2014-07-10 13:14:49 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v34
  146. 2014-07-10 13:14:49 DEBUG MAIN :: Backup done
  147. 2014-07-10 13:14:49 INFO MAIN :: Proceeding with upgrade
  148. 2014-07-10 13:14:49 INFO MAIN :: Adding column absolute_number and scene_absolute_number to scene_numbering
  149. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: ALTER TABLE scene_numbering ADD absolute_number NUMERIC
  150. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: UPDATE scene_numbering SET absolute_number = ? with args ('0',)
  151. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: ALTER TABLE scene_numbering ADD scene_absolute_number NUMERIC
  152. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: UPDATE scene_numbering SET scene_absolute_number = ? with args ('0',)
  153. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  154. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  155. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [34]
  156. 2014-07-10 13:14:49 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade completed
  157. 2014-07-10 13:14:49 DEBUG MAIN :: Checking Add Anime Blacklist Whitelist database upgrade
  158. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  159. 2014-07-10 13:14:49 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  160. 2014-07-10 13:14:50 INFO MAIN :: Database upgrade required: Add Anime Blacklist Whitelist
  161. 2014-07-10 13:14:50 INFO MAIN :: Backing up database before upgrade
  162. 2014-07-10 13:14:50 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v35
  163. 2014-07-10 13:14:50 DEBUG MAIN :: Backup done
  164. 2014-07-10 13:14:50 INFO MAIN :: Proceeding with upgrade
  165. 2014-07-10 13:14:50 DEBUG MAIN :: Transaction with 2 queries executed
  166. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  167. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  168. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [35]
  169. 2014-07-10 13:14:50 DEBUG MAIN :: AddAnimeBlacklistWhitelist upgrade completed
  170. 2014-07-10 13:14:50 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  171. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  172. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  173. 2014-07-10 13:14:50 INFO MAIN :: Database upgrade required: Add Scene Absolute Numbering
  174. 2014-07-10 13:14:50 INFO MAIN :: Backing up database before upgrade
  175. 2014-07-10 13:14:50 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v36
  176. 2014-07-10 13:14:50 DEBUG MAIN :: Backup done
  177. 2014-07-10 13:14:50 INFO MAIN :: Proceeding with upgrade
  178. 2014-07-10 13:14:50 INFO MAIN :: Adding column scene_absolute_number to tv_episodes
  179. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: ALTER TABLE tv_episodes ADD scene_absolute_number NUMERIC
  180. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: UPDATE tv_episodes SET scene_absolute_number = ? with args ('0',)
  181. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  182. 2014-07-10 13:14:50 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  183. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [36]
  184. 2014-07-10 13:14:51 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade completed
  185. 2014-07-10 13:14:51 DEBUG MAIN :: Checking Add Xem Refresh database upgrade
  186. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  187. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  188. 2014-07-10 13:14:51 INFO MAIN :: Database upgrade required: Add Xem Refresh
  189. 2014-07-10 13:14:51 INFO MAIN :: Backing up database before upgrade
  190. 2014-07-10 13:14:51 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v37
  191. 2014-07-10 13:14:51 DEBUG MAIN :: Backup done
  192. 2014-07-10 13:14:51 INFO MAIN :: Proceeding with upgrade
  193. 2014-07-10 13:14:51 INFO MAIN :: Creating table xem_refresh
  194. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: CREATE TABLE xem_refresh (indexer TEXT, indexer_id INTEGER PRIMARY KEY, last_refreshed INTEGER)
  195. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  196. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  197. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [37]
  198. 2014-07-10 13:14:51 DEBUG MAIN :: AddXemRefresh upgrade completed
  199. 2014-07-10 13:14:51 DEBUG MAIN :: Checking Add Scene To Tv Shows database upgrade
  200. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  201. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  202. 2014-07-10 13:14:51 INFO MAIN :: Database upgrade required: Add Scene To Tv Shows
  203. 2014-07-10 13:14:51 INFO MAIN :: Backing up database before upgrade
  204. 2014-07-10 13:14:51 DEBUG MAIN :: Trying to back up /media/sickbeard/sickbeard.db to /media/sickbeard/sickbeard.db.v38
  205. 2014-07-10 13:14:51 DEBUG MAIN :: Backup done
  206. 2014-07-10 13:14:51 INFO MAIN :: Proceeding with upgrade
  207. 2014-07-10 13:14:51 INFO MAIN :: Adding column scene to tv_shows
  208. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: ALTER TABLE tv_shows ADD scene NUMERIC
  209. 2014-07-10 13:14:51 DB MAIN :: sickbeard.db: UPDATE tv_shows SET scene = ? with args ('0',)
  210. 2014-07-10 13:14:52 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  211. 2014-07-10 13:14:52 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  212. 2014-07-10 13:14:52 DB MAIN :: sickbeard.db: UPDATE db_version SET db_version = ? with args [38]
  213. 2014-07-10 13:14:52 DEBUG MAIN :: AddSceneToTvShows upgrade completed
  214. 2014-07-10 13:14:52 INFO MAIN :: Checking database structure...
  215. 2014-07-10 13:14:52 DEBUG MAIN :: Checking Initial Schema database upgrade
  216. 2014-07-10 13:14:52 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastUpdate',)
  217. 2014-07-10 13:14:52 INFO MAIN :: Database upgrade required: Initial Schema
  218. 2014-07-10 13:14:52 DB MAIN :: cache.db: CREATE TABLE lastUpdate (provider TEXT, time NUMERIC);
  219. 2014-07-10 13:14:52 DB MAIN :: cache.db: CREATE TABLE lastSearch (provider TEXT, time NUMERIC);
  220. 2014-07-10 13:14:52 DB MAIN :: cache.db: CREATE TABLE db_version (db_version INTEGER);
  221. 2014-07-10 13:14:52 DB MAIN :: cache.db: INSERT INTO db_version (db_version) VALUES (?) with args (1,)
  222. 2014-07-10 13:14:53 DEBUG MAIN :: InitialSchema upgrade completed
  223. 2014-07-10 13:14:53 DEBUG MAIN :: Checking Add Scene Exceptions database upgrade
  224. 2014-07-10 13:14:53 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions',)
  225. 2014-07-10 13:14:53 INFO MAIN :: Database upgrade required: Add Scene Exceptions
  226. 2014-07-10 13:14:53 DB MAIN :: cache.db: CREATE TABLE scene_exceptions (exception_id INTEGER PRIMARY KEY, indexer_id INTEGER KEY, show_name TEXT)
  227. 2014-07-10 13:14:53 DEBUG MAIN :: AddSceneExceptions upgrade completed
  228. 2014-07-10 13:14:53 DEBUG MAIN :: Checking Add Scene Name Cache database upgrade
  229. 2014-07-10 13:14:53 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_names',)
  230. 2014-07-10 13:14:53 INFO MAIN :: Database upgrade required: Add Scene Name Cache
  231. 2014-07-10 13:14:53 DB MAIN :: cache.db: CREATE TABLE scene_names (indexer_id INTEGER, name TEXT)
  232. 2014-07-10 13:14:53 DEBUG MAIN :: AddSceneNameCache upgrade completed
  233. 2014-07-10 13:14:53 DEBUG MAIN :: Checking Add Network Timezones database upgrade
  234. 2014-07-10 13:14:53 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('network_timezones',)
  235. 2014-07-10 13:14:53 INFO MAIN :: Database upgrade required: Add Network Timezones
  236. 2014-07-10 13:14:53 DB MAIN :: cache.db: CREATE TABLE network_timezones (network_name TEXT PRIMARY KEY, timezone TEXT)
  237. 2014-07-10 13:14:53 DEBUG MAIN :: AddNetworkTimezones upgrade completed
  238. 2014-07-10 13:14:53 DEBUG MAIN :: Checking Add Last Search database upgrade
  239. 2014-07-10 13:14:53 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastSearch',)
  240. 2014-07-10 13:14:53 DEBUG MAIN :: AddLastSearch upgrade not required
  241. 2014-07-10 13:14:53 DEBUG MAIN :: Checking Add Scene Exceptions Seasons database upgrade
  242. 2014-07-10 13:14:53 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  243. 2014-07-10 13:14:53 INFO MAIN :: Database upgrade required: Add Scene Exceptions Seasons
  244. 2014-07-10 13:14:53 DB MAIN :: cache.db: ALTER TABLE scene_exceptions ADD season NUMERIC
  245. 2014-07-10 13:14:54 DB MAIN :: cache.db: UPDATE scene_exceptions SET season = ? with args (-1,)
  246. 2014-07-10 13:14:54 DEBUG MAIN :: AddSceneExceptionsSeasons upgrade completed
  247. 2014-07-10 13:14:54 DEBUG MAIN :: Checking Add Scene Exceptions Custom database upgrade
  248. 2014-07-10 13:14:54 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  249. 2014-07-10 13:14:54 INFO MAIN :: Database upgrade required: Add Scene Exceptions Custom
  250. 2014-07-10 13:14:54 DB MAIN :: cache.db: ALTER TABLE scene_exceptions ADD custom NUMERIC
  251. 2014-07-10 13:14:54 DB MAIN :: cache.db: UPDATE scene_exceptions SET custom = ? with args (0,)
  252. 2014-07-10 13:14:54 DEBUG MAIN :: AddSceneExceptionsCustom upgrade completed
  253. 2014-07-10 13:14:54 DEBUG MAIN :: Checking Add Scene Exceptions Refresh database upgrade
  254. 2014-07-10 13:14:54 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions_refresh',)
  255. 2014-07-10 13:14:54 INFO MAIN :: Database upgrade required: Add Scene Exceptions Refresh
  256. 2014-07-10 13:14:54 DB MAIN :: cache.db: CREATE TABLE scene_exceptions_refresh (list TEXT PRIMARY KEY, last_refreshed INTEGER)
  257. 2014-07-10 13:14:54 DEBUG MAIN :: AddSceneExceptionsRefresh upgrade completed
  258. 2014-07-10 13:14:54 INFO MAIN :: Checking database structure...
  259. 2014-07-10 13:14:54 DEBUG MAIN :: Checking Initial Schema database upgrade
  260. 2014-07-10 13:14:54 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('failed',)
  261. 2014-07-10 13:14:54 INFO MAIN :: Database upgrade required: Initial Schema
  262. 2014-07-10 13:14:54 DB MAIN :: failed.db: CREATE TABLE failed (release TEXT);
  263. 2014-07-10 13:14:54 DB MAIN :: failed.db: CREATE TABLE db_version (db_version INTEGER);
  264. 2014-07-10 13:14:55 DB MAIN :: failed.db: INSERT INTO db_version (db_version) VALUES (?) with args (1,)
  265. 2014-07-10 13:14:55 DEBUG MAIN :: InitialSchema upgrade completed
  266. 2014-07-10 13:14:55 DEBUG MAIN :: Checking Size And Provider database upgrade
  267. 2014-07-10 13:14:55 DB MAIN :: failed.db: PRAGMA table_info(failed)
  268. 2014-07-10 13:14:55 INFO MAIN :: Database upgrade required: Size And Provider
  269. 2014-07-10 13:14:55 DB MAIN :: failed.db: ALTER TABLE failed ADD size NUMERIC
  270. 2014-07-10 13:14:55 DB MAIN :: failed.db: UPDATE failed SET size = ? with args (0,)
  271. 2014-07-10 13:14:55 DB MAIN :: failed.db: ALTER TABLE failed ADD provider TEXT
  272. 2014-07-10 13:14:55 DB MAIN :: failed.db: UPDATE failed SET provider = ? with args ('',)
  273. 2014-07-10 13:14:55 DEBUG MAIN :: SizeAndProvider upgrade completed
  274. 2014-07-10 13:14:55 DEBUG MAIN :: Checking History database upgrade
  275. 2014-07-10 13:14:55 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('history',)
  276. 2014-07-10 13:14:55 INFO MAIN :: Database upgrade required: History
  277. 2014-07-10 13:14:55 DB MAIN :: failed.db: CREATE TABLE history (date NUMERIC, size NUMERIC, release TEXT, provider TEXT);
  278. 2014-07-10 13:14:56 DEBUG MAIN :: History upgrade completed
  279. 2014-07-10 13:14:56 DEBUG MAIN :: Checking History Status database upgrade
  280. 2014-07-10 13:14:56 DB MAIN :: failed.db: PRAGMA table_info(history)
  281. 2014-07-10 13:14:56 INFO MAIN :: Database upgrade required: History Status
  282. 2014-07-10 13:14:56 DB MAIN :: failed.db: ALTER TABLE history ADD old_status NUMERIC
  283. 2014-07-10 13:14:56 DB MAIN :: failed.db: UPDATE history SET old_status = ? with args (0,)
  284. 2014-07-10 13:14:56 DB MAIN :: failed.db: ALTER TABLE history ADD showid NUMERIC
  285. 2014-07-10 13:14:56 DB MAIN :: failed.db: UPDATE history SET showid = ? with args ('-1',)
  286. 2014-07-10 13:14:56 DB MAIN :: failed.db: ALTER TABLE history ADD season NUMERIC
  287. 2014-07-10 13:14:56 DB MAIN :: failed.db: UPDATE history SET season = ? with args ('-1',)
  288. 2014-07-10 13:14:56 DB MAIN :: failed.db: ALTER TABLE history ADD episode NUMERIC
  289. 2014-07-10 13:14:56 DB MAIN :: failed.db: UPDATE history SET episode = ? with args ('-1',)
  290. 2014-07-10 13:14:57 DEBUG MAIN :: HistoryStatus upgrade completed
  291. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_indexer_id')
  292. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_tv_episodes_showid_airdate')
  293. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_showid')
  294. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_status')
  295. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_air')
  296. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_sta_air')
  297. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: SELECT show_id, indexer_id, COUNT(indexer_id) as count FROM tv_shows GROUP BY indexer_id HAVING count > 1
  298. 2014-07-10 13:14:57 INFO MAIN :: No duplicate show, check passed
  299. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: SELECT showid, season, episode, COUNT(showid) as count FROM tv_episodes GROUP BY showid, season, episode HAVING count > 1
  300. 2014-07-10 13:14:57 INFO MAIN :: No duplicate episode, check passed
  301. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: SELECT episode_id, showid, tv_shows.indexer_id FROM tv_episodes LEFT JOIN tv_shows ON tv_episodes.showid=tv_shows.indexer_id WHERE tv_shows.indexer_id is NULL
  302. 2014-07-10 13:14:57 INFO MAIN :: No orphan episodes, check passed
  303. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: SELECT episode_id, showid FROM tv_episodes WHERE airdate > ? AND status in (?,?) with args [735424, 5, 3]
  304. 2014-07-10 13:14:57 INFO MAIN :: No UNAIRED episodes, check passed
  305. 2014-07-10 13:14:57 DEBUG MAIN :: config_version -> 5
  306. 2014-07-10 13:14:57 DEBUG MAIN :: Checking if we can use git commands: git version
  307. 2014-07-10 13:14:57 DEBUG MAIN :: Executing git version with your shell in /media/sickbeard
  308. 2014-07-10 13:14:57 DEBUG MAIN :: git output: git version 1.7.10.4
  309. 2014-07-10 13:14:57 DEBUG MAIN :: git version : returned successful
  310. 2014-07-10 13:14:57 DEBUG MAIN :: Using: git
  311. 2014-07-10 13:14:57 DEBUG MAIN :: Executing git symbolic-ref -q HEAD with your shell in /media/sickbeard
  312. 2014-07-10 13:14:57 DEBUG MAIN :: git output: refs/heads/master
  313. 2014-07-10 13:14:57 DEBUG MAIN :: git symbolic-ref -q HEAD : returned successful
  314. 2014-07-10 13:14:57 DEBUG MAIN :: Retrieving the last check time from the DB
  315. 2014-07-10 13:14:57 DB MAIN :: sickbeard.db: SELECT * FROM info
  316. 2014-07-10 13:14:57 DEBUG MAIN :: nyaatorrents -> 0
  317. 2014-07-10 13:14:57 DEBUG MAIN :: nyaatorrents_ratio ->
  318. 2014-07-10 13:14:57 DEBUG MAIN :: nyaatorrents_search_mode -> eponly
  319. 2014-07-10 13:14:57 DEBUG MAIN :: nyaatorrents_search_fallback -> 0
  320. 2014-07-10 13:14:57 DEBUG MAIN :: nyaatorrents_backlog_only -> 0
  321. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents -> 0
  322. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_username ->
  323. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_password -> ******
  324. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_ratio ->
  325. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_minseed -> 0
  326. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_minleech -> 0
  327. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_search_mode -> eponly
  328. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_search_fallback -> 0
  329. 2014-07-10 13:14:57 DEBUG MAIN :: hdtorrents_backlog_only -> 0
  330. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd -> 0
  331. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_username ->
  332. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_password -> ******
  333. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_ratio ->
  334. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_minseed -> 0
  335. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_minleech -> 0
  336. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_freeleech -> 0
  337. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_search_mode -> eponly
  338. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_search_fallback -> 0
  339. 2014-07-10 13:14:57 DEBUG MAIN :: speedcd_backlog_only -> 0
  340. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents -> 0
  341. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_username ->
  342. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_password -> ******
  343. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_ratio ->
  344. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_freeleech -> 0
  345. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_search_mode -> eponly
  346. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_search_fallback -> 0
  347. 2014-07-10 13:14:57 DEBUG MAIN :: iptorrents_backlog_only -> 0
  348. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents -> 0
  349. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_hash ->
  350. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_digest ->
  351. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_options ->
  352. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_ratio ->
  353. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_search_mode -> eponly
  354. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_search_fallback -> 0
  355. 2014-07-10 13:14:57 DEBUG MAIN :: tvtorrents_backlog_only -> 0
  356. 2014-07-10 13:14:57 DEBUG MAIN :: ezrss -> 0
  357. 2014-07-10 13:14:57 DEBUG MAIN :: ezrss_ratio ->
  358. 2014-07-10 13:14:57 DEBUG MAIN :: ezrss_search_mode -> eponly
  359. 2014-07-10 13:14:57 DEBUG MAIN :: ezrss_search_fallback -> 0
  360. 2014-07-10 13:14:57 DEBUG MAIN :: ezrss_backlog_only -> 0
  361. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents -> 0
  362. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_confirmed -> 0
  363. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_ratio ->
  364. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_minseed -> 0
  365. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_minleech -> 0
  366. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_search_mode -> eponly
  367. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_search_fallback -> 0
  368. 2014-07-10 13:14:57 DEBUG MAIN :: kickasstorrents_backlog_only -> 0
  369. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen -> 0
  370. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_username ->
  371. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_password -> ******
  372. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_ratio ->
  373. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_search_mode -> eponly
  374. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_search_fallback -> 0
  375. 2014-07-10 13:14:57 DEBUG MAIN :: nextgen_backlog_only -> 0
  376. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday -> 0
  377. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_username ->
  378. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_password -> ******
  379. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_ratio ->
  380. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_minseed -> 0
  381. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_minleech -> 0
  382. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_freeleech -> 0
  383. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_search_mode -> eponly
  384. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_search_fallback -> 0
  385. 2014-07-10 13:14:57 DEBUG MAIN :: torrentday_backlog_only -> 0
  386. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech -> 0
  387. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_username ->
  388. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_password -> ******
  389. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_ratio ->
  390. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_minseed -> 0
  391. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_minleech -> 0
  392. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_search_mode -> eponly
  393. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_search_fallback -> 0
  394. 2014-07-10 13:14:57 DEBUG MAIN :: torrentleech_backlog_only -> 0
  395. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess -> 0
  396. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_username ->
  397. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_password -> ******
  398. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_ratio ->
  399. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_minseed -> 0
  400. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_minleech -> 0
  401. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_search_mode -> eponly
  402. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_search_fallback -> 0
  403. 2014-07-10 13:14:57 DEBUG MAIN :: sceneaccess_backlog_only -> 0
  404. 2014-07-10 13:14:57 DEBUG MAIN :: btn -> 0
  405. 2014-07-10 13:14:57 DEBUG MAIN :: btn_api_key ->
  406. 2014-07-10 13:14:57 DEBUG MAIN :: btn_ratio ->
  407. 2014-07-10 13:14:57 DEBUG MAIN :: btn_search_mode -> eponly
  408. 2014-07-10 13:14:57 DEBUG MAIN :: btn_search_fallback -> 0
  409. 2014-07-10 13:14:57 DEBUG MAIN :: btn_backlog_only -> 0
  410. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits -> 0
  411. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_username ->
  412. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_passkey ->
  413. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_ratio ->
  414. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_search_mode -> eponly
  415. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_search_fallback -> 0
  416. 2014-07-10 13:14:57 DEBUG MAIN :: hdbits_backlog_only -> 0
  417. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay -> 0
  418. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_proxy -> 0
  419. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_proxy_url ->
  420. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_confirmed -> 0
  421. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_ratio ->
  422. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_minseed -> 0
  423. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_minleech -> 0
  424. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_search_mode -> eponly
  425. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_search_fallback -> 0
  426. 2014-07-10 13:14:57 DEBUG MAIN :: thepiratebay_backlog_only -> 0
  427. 2014-07-10 13:14:57 DEBUG MAIN :: nzbs_org -> 0
  428. 2014-07-10 13:14:57 DEBUG MAIN :: nzbs_org_search_mode -> eponly
  429. 2014-07-10 13:14:57 DEBUG MAIN :: nzbs_org_search_fallback -> 0
  430. 2014-07-10 13:14:57 DEBUG MAIN :: nzbs_org_backlog_only -> 0
  431. 2014-07-10 13:14:57 DEBUG MAIN :: womble_s_index -> 0
  432. 2014-07-10 13:14:57 DEBUG MAIN :: womble_s_index_search_mode -> eponly
  433. 2014-07-10 13:14:57 DEBUG MAIN :: womble_s_index_search_fallback -> 0
  434. 2014-07-10 13:14:57 DEBUG MAIN :: womble_s_index_backlog_only -> 0
  435. 2014-07-10 13:14:57 DEBUG MAIN :: sick_beard_index -> 0
  436. 2014-07-10 13:14:57 DEBUG MAIN :: sick_beard_index_search_mode -> eponly
  437. 2014-07-10 13:14:57 DEBUG MAIN :: sick_beard_index_search_fallback -> 0
  438. 2014-07-10 13:14:57 DEBUG MAIN :: sick_beard_index_backlog_only -> 0
  439. 2014-07-10 13:14:57 DEBUG MAIN :: usenet_crawler -> 0
  440. 2014-07-10 13:14:57 DEBUG MAIN :: usenet_crawler_search_mode -> eponly
  441. 2014-07-10 13:14:57 DEBUG MAIN :: usenet_crawler_search_fallback -> 0
  442. 2014-07-10 13:14:57 DEBUG MAIN :: usenet_crawler_backlog_only -> 0
  443. 2014-07-10 13:14:57 DEBUG MAIN :: fanzub -> 0
  444. 2014-07-10 13:14:57 DEBUG MAIN :: fanzub_search_mode -> eponly
  445. 2014-07-10 13:14:57 DEBUG MAIN :: fanzub_search_fallback -> 0
  446. 2014-07-10 13:14:57 DEBUG MAIN :: fanzub_backlog_only -> 0
  447. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs -> 0
  448. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs_api_key ->
  449. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs_username ->
  450. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs_search_mode -> eponly
  451. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs_search_fallback -> 0
  452. 2014-07-10 13:14:57 DEBUG MAIN :: omgwtfnzbs_backlog_only -> 0
  453. 2014-07-10 13:14:58 DEBUG MAIN :: clear_cache ->
  454. 2014-07-10 13:14:58 INFO MAIN :: Loading initial show list
  455. 2014-07-10 13:14:58 DB MAIN :: sickbeard.db: SELECT * FROM tv_shows
  456. 2014-07-10 13:14:58 INFO TORNADO :: Starting SickRage on http://0.0.0.0:8081/
  457. 2014-07-10 13:14:58 INFO DAILYSEARCHER :: Searching for coming episodes and 1 weeks worth of previously WANTED episodes ...
  458. 2014-07-10 13:14:58 DEBUG BACKLOG :: Retrieving the last check time from the DB
  459. 2014-07-10 13:14:58 DB DAILYSEARCHER :: sickbeard.db: SELECT * FROM tv_episodes WHERE status in (?,?) AND airdate >= ? AND airdate <= ? with args [1, 3, 735417, 735424]
  460. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: Starting new thread: CHECKVERSION
  461. 2014-07-10 13:14:58 INFO CHECKVERSION :: Checking if git needs an update
  462. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: Executing git rev-parse HEAD with your shell in /media/sickbeard
  463. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git output: e891e9d637e4c1e1375d2e12d36f08d915828911
  464. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git rev-parse HEAD : returned successful
  465. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: Executing git fetch origin with your shell in /media/sickbeard
  466. 2014-07-10 13:14:58 INFO DAILYSEARCHER :: Could not find any needed episodes to search for ...
  467. 2014-07-10 13:14:58 DB BACKLOG :: sickbeard.db: SELECT * FROM info
  468. 2014-07-10 13:14:58 DB MAIN :: cache.db: DELETE FROM scene_names WHERE indexer_id = ? with args [0]
  469. 2014-07-10 13:14:58 DEBUG BACKLOG :: Setting the last backlog in the DB to 735424
  470. 2014-07-10 13:14:58 DB BACKLOG :: sickbeard.db: SELECT * FROM info
  471. 2014-07-10 13:14:58 DB BACKLOG :: sickbeard.db: INSERT INTO info (last_backlog, last_indexer) VALUES (?,?) with args ['735424', 0]
  472. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git output:
  473. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git fetch origin : returned successful
  474. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: Executing git rev-parse --verify --quiet "@{upstream}" with your shell in /media/sickbeard
  475. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git output: e891e9d637e4c1e1375d2e12d36f08d915828911
  476. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git rev-parse --verify --quiet "@{upstream}" : returned successful
  477. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: Executing git rev-list --left-right "@{upstream}"...HEAD with your shell in /media/sickbeard
  478. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git output:
  479. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: git rev-list --left-right "@{upstream}"...HEAD : returned successful
  480. 2014-07-10 13:14:58 DEBUG CHECKVERSION :: cur_commit = e891e9d637e4c1e1375d2e12d36f08d915828911, newest_commit = e891e9d637e4c1e1375d2e12d36f08d915828911, num_commits_behind = 0, num_commits_ahead = 0
  481. 2014-07-10 13:14:58 INFO CHECKVERSION :: No update needed
  482. 2014-07-10 13:14:58 DB MAIN :: cache.db: INSERT OR REPLACE INTO scene_exceptions_refresh (list, last_refreshed) VALUES (?,?) with args ['normal', 1405023298.565351]
  483. 2014-07-10 13:14:59 DB MAIN :: cache.db: SELECT last_refreshed FROM scene_exceptions_refresh WHERE list = ? with args ['xem']
  484. 2014-07-10 13:14:59 INFO MAIN :: Checking for XEM scene exception updates for theTVDB
  485. 2014-07-10 13:14:59 INFO MAIN :: Checking for XEM scene exception updates for TVRage
  486. 2014-07-10 13:15:00 DB MAIN :: cache.db: INSERT OR REPLACE INTO scene_exceptions_refresh (list, last_refreshed) VALUES (?,?) with args ['xem', 1405023300.482772]
  487. 2014-07-10 13:15:00 DB MAIN :: cache.db: SELECT last_refreshed FROM scene_exceptions_refresh WHERE list = ? with args ['anidb']
  488. 2014-07-10 13:15:00 INFO MAIN :: Checking for scene exception updates for AniDB
  489. 2014-07-10 13:15:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79360]
  490. 2014-07-10 13:15:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka 7', 1]
  491. 2014-07-10 13:15:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka Seven Ao', 2]
  492. 2014-07-10 13:15:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka Seven: Astral Ocean', 2]
  493. 2014-07-10 13:15:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Koukyoushi Hen - Eureka Seven', 1]
  494. 2014-07-10 13:15:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka 7 (JP)', 1]
  495. 2014-07-10 13:15:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka Seven: Ao', 2]
  496. 2014-07-10 13:15:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79360, u'Eureka Seven Astral Ocean', 2]
  497. 2014-07-10 13:15:02 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [268289]
  498. 2014-07-10 13:15:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268289, u'Valvrave the Liberator', 1]
  499. 2014-07-10 13:15:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268289, u'Kakumeiki Valvrave', 1]
  500. 2014-07-10 13:15:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268289, u'Kakumeiki Valvrave 2', 2]
  501. 2014-07-10 13:15:02 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [279042]
  502. 2014-07-10 13:15:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [279042, u'Abarenbou Rikishi!! Matsutarou', -1]
  503. 2014-07-10 13:15:02 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79857]
  504. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79857, u'\u30b7\u30e3\u30fc\u30de\u30f3\u30ad\u30f3\u30b0', -1]
  505. 2014-07-10 13:15:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [251908]
  506. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u'Boku wa Tomodachi ga Sukunai', -1]
  507. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u'Boku ha Tomodachi ga Sukunai', -1]
  508. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u"I Don't Have Many Friends", -1]
  509. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u'Boku wa Tomodachi ga Sukunai NEXT', 2]
  510. 2014-07-10 13:15:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u'Haganai NEXT', 2]
  511. 2014-07-10 13:15:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251908, u'Boku Ha Tomodachi ga Sukunai NEXT', 2]
  512. 2014-07-10 13:15:04 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80552]
  513. 2014-07-10 13:15:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80552, u'93', 7]
  514. 2014-07-10 13:15:04 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [252423]
  515. 2014-07-10 13:15:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain', -1]
  516. 2014-07-10 13:15:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi-Brain', -1]
  517. 2014-07-10 13:15:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain - Kami no Puzzle', -1]
  518. 2014-07-10 13:15:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain: Kami no Puzzle', -1]
  519. 2014-07-10 13:15:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain S2', 2]
  520. 2014-07-10 13:15:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi-Brain S2', 2]
  521. 2014-07-10 13:15:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain - Kami no Puzzle S2', 2]
  522. 2014-07-10 13:15:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain: Kami no Puzzle (2012)', 2]
  523. 2014-07-10 13:15:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'\u30d5\u30a1\u30a4\u30fb\u30d6\u30ec\u30a4\u30f3 \u795e\u306e\u30d1\u30ba\u30eb', -1]
  524. 2014-07-10 13:15:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain S3', 3]
  525. 2014-07-10 13:15:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi-Brain S3', 3]
  526. 2014-07-10 13:15:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain - Kami no Puzzle S3', 3]
  527. 2014-07-10 13:15:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252423, u'Phi Brain: Kami no Puzzle (2013)', 3]
  528. 2014-07-10 13:15:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80904]
  529. 2014-07-10 13:15:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80904, u'ef - a tale of memories.', 1]
  530. 2014-07-10 13:15:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80904, u'ef - a tale of melodies.', 2]
  531. 2014-07-10 13:15:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [78857]
  532. 2014-07-10 13:15:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78857, u'Naruto', 1]
  533. 2014-07-10 13:15:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264531]
  534. 2014-07-10 13:15:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264531, u'Mondaiji-tachi ga Isekai kara Kuru Sou Desu yo?', -1]
  535. 2014-07-10 13:15:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264531, u'Don`t Problem Children Come From an Alternate World?', -1]
  536. 2014-07-10 13:15:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264531, u"Problem Children Are Coming from Another World, Aren't They?", -1]
  537. 2014-07-10 13:15:08 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [70668]
  538. 2014-07-10 13:15:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70668, u'Cardcaptors', -1]
  539. 2014-07-10 13:15:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70668, u'\u30ab\u30fc\u30c9\u30ad\u30e3\u30d7\u30bf\u30fc\u3055\u304f\u3089', -1]
  540. 2014-07-10 13:15:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70668, u'Sakura, chasseuse de cartes', -1]
  541. 2014-07-10 13:15:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70668, u'Card Captor Sakura', -1]
  542. 2014-07-10 13:15:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [249869]
  543. 2014-07-10 13:15:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [249869, u'Ro-Kyu-Bu! SS', 2]
  544. 2014-07-10 13:15:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79886]
  545. 2014-07-10 13:15:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79886, u'Aquarion Evol', 2]
  546. 2014-07-10 13:15:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79886, u'Sousei no Aquarion', 1]
  547. 2014-07-10 13:15:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  548. 2014-07-10 13:15:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79886, u'\u30a2\u30af\u30a8\u30ea\u30aa\u30f3EVOL', 2]
  549. 2014-07-10 13:15:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79886, u'\u5275\u8056\u306e\u30a2\u30af\u30a8\u30ea\u30aa\u30f3', 1]
  550. 2014-07-10 13:15:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79886, u'Genesis of Aquarion', 1]
  551. 2014-07-10 13:15:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [3757]
  552. 2014-07-10 13:15:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [3757, u'Gummi Bears', -1]
  553. 2014-07-10 13:15:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [249872]
  554. 2014-07-10 13:15:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [249872, u'Bunny Drop', 1]
  555. 2014-07-10 13:15:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [249872, u'Usagi Drop', 1]
  556. 2014-07-10 13:15:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83475]
  557. 2014-07-10 13:15:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83475, u'Michiko & Hatchin', -1]
  558. 2014-07-10 13:15:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83475, u'Michiko to Hatchin', -1]
  559. 2014-07-10 13:15:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [35348]
  560. 2014-07-10 13:15:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35348, u'Valvrave the Liberator', 1]
  561. 2014-07-10 13:15:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35348, u'Kakumeiki Valvrave', 1]
  562. 2014-07-10 13:15:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35348, u'Kakumeiki Valvrave 2', 2]
  563. 2014-07-10 13:15:12 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [73749]
  564. 2014-07-10 13:15:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'Ghost in the Shell: Stand Alone Complex', 1]
  565. 2014-07-10 13:15:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'Koukaku Kidoutai Stand Alone Complex', 1]
  566. 2014-07-10 13:15:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'\u653b\u6bbb\u6a5f\u52d5\u968a STAND ALONE COMPLEX', 1]
  567. 2014-07-10 13:15:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'Ghost in the Shell: Stand Alone Complex 2nd GIG', 2]
  568. 2014-07-10 13:15:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'Koukaku Kidoutai S.A.C. 2nd GIG', 2]
  569. 2014-07-10 13:15:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'\u653b\u6bbb\u6a5f\u52d5\u968a S.A.C. 2nd GIG', 2]
  570. 2014-07-10 13:15:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'Koukaku Kidoutai', -1]
  571. 2014-07-10 13:15:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73749, u'\u653b\u6bbb\u6a5f\u52d5\u968a', -1]
  572. 2014-07-10 13:15:13 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79895]
  573. 2014-07-10 13:15:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79895, u'\u9280\u9b42[\u304e\u3093\u305f\u307e]', -1]
  574. 2014-07-10 13:15:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79895, u'Kintama', 6]
  575. 2014-07-10 13:15:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79895, u'Gintama', 6]
  576. 2014-07-10 13:15:14 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80900]
  577. 2014-07-10 13:15:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80900, u'AIKa', -1]
  578. 2014-07-10 13:15:14 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [247836]
  579. 2014-07-10 13:15:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247836, u"Dog Days'", 2]
  580. 2014-07-10 13:15:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247836, u'Dog Days S2', 2]
  581. 2014-07-10 13:15:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247836, u'Dog Days', 1]
  582. 2014-07-10 13:15:15 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80926]
  583. 2014-07-10 13:15:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80926, u'Minuscule', -1]
  584. 2014-07-10 13:15:15 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [186911]
  585. 2014-07-10 13:15:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [186911, u'Samurai Girls', 1]
  586. 2014-07-10 13:15:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [186911, u'Samurai Bride', 2]
  587. 2014-07-10 13:15:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [186911, u'Hyakka Ryouran: Samurai Bride', 2]
  588. 2014-07-10 13:15:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267440]
  589. 2014-07-10 13:15:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267440, u'Shingeki no Kyojin', -1]
  590. 2014-07-10 13:15:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267810]
  591. 2014-07-10 13:15:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267810, u'Aku no Hana', 1]
  592. 2014-07-10 13:15:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257571]
  593. 2014-07-10 13:15:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257571, u'Nazo no Kanojo X', -1]
  594. 2014-07-10 13:15:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [134181]
  595. 2014-07-10 13:15:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [134181, u'Seikon no Qwaser', -1]
  596. 2014-07-10 13:15:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [134181, u'Seikon no Qwaser 2', 2]
  597. 2014-07-10 13:15:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [134181, u'Seikon no Qwaser II', 2]
  598. 2014-07-10 13:15:17 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275633]
  599. 2014-07-10 13:15:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275633, u'Unconfirmed & In Progress', 1]
  600. 2014-07-10 13:15:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275633, u'Mikakunin de Shinkoukei', 1]
  601. 2014-07-10 13:15:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275633, u'Engaged to the Unidentified', 1]
  602. 2014-07-10 13:15:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275633, u'Mikakunin de Shinkoukei - Engaged to the Unidentified', 1]
  603. 2014-07-10 13:15:18 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [269319]
  604. 2014-07-10 13:15:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269319, u'Fate Kaleid Liner PRISMA ILYA', -1]
  605. 2014-07-10 13:15:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269319, u'Fate Kaleid Liner Prisma Illya', -1]
  606. 2014-07-10 13:15:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269319, u'Fate \u2044 Kaleid Liner Prisma Illya', -1]
  607. 2014-07-10 13:15:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269319, u'Fate Kaleid Liner PRISMA ILYA 2wei!', 2]
  608. 2014-07-10 13:15:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [29789]
  609. 2014-07-10 13:15:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29789, u'Maken-Ki! Battling Venus', -1]
  610. 2014-07-10 13:15:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29789, u'Maken-ki! Two', 2]
  611. 2014-07-10 13:15:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [269872]
  612. 2014-07-10 13:15:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269872, u'KINMOZA!', -1]
  613. 2014-07-10 13:15:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269872, u'Kin-iro Mosaic', -1]
  614. 2014-07-10 13:15:20 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [72241]
  615. 2014-07-10 13:15:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Adventure', 1]
  616. 2014-07-10 13:15:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Adventure 02', 2]
  617. 2014-07-10 13:15:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Tamers', 3]
  618. 2014-07-10 13:15:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Frontier', 4]
  619. 2014-07-10 13:15:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Savers', 5]
  620. 2014-07-10 13:15:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Adventure Zero Two', 2]
  621. 2014-07-10 13:15:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon: Digital Monsters', -1]
  622. 2014-07-10 13:15:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Zero Two', 2]
  623. 2014-07-10 13:15:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72241, u'Digimon Data Squad', 5]
  624. 2014-07-10 13:15:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259635]
  625. 2014-07-10 13:15:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259635, u'Kingdom', -1]
  626. 2014-07-10 13:15:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259635, u'\u30ad\u30f3\u30b0\u30c0\u30e0', -1]
  627. 2014-07-10 13:15:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259635, u'Kingdom S2', 2]
  628. 2014-07-10 13:15:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259635, u'Kingdom 2', 2]
  629. 2014-07-10 13:15:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259635, u'Kingdom (2013)', 2]
  630. 2014-07-10 13:15:22 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [269876]
  631. 2014-07-10 13:15:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269876, u'Uchouten Kazoku', -1]
  632. 2014-07-10 13:15:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [219701]
  633. 2014-07-10 13:15:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219701, u'Freezing Vibration', 2]
  634. 2014-07-10 13:15:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219701, u'Freezing (2011)', 1]
  635. 2014-07-10 13:15:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219701, u'Freezing', 1]
  636. 2014-07-10 13:15:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259638]
  637. 2014-07-10 13:15:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259638, u'Little Busters!', 1]
  638. 2014-07-10 13:15:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259638, u'Little Busters! Refrain', 2]
  639. 2014-07-10 13:15:24 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81463]
  640. 2014-07-10 13:15:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81463, u'Minami-ke', 1]
  641. 2014-07-10 13:15:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81463, u'Minami-ke Okawari', 2]
  642. 2014-07-10 13:15:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81463, u'Minami-ke Okaeri', 3]
  643. 2014-07-10 13:15:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81463, u'Minami-ke Tadaima', 4]
  644. 2014-07-10 13:15:25 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259640]
  645. 2014-07-10 13:15:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259640, u'Sword Art Online II', 2]
  646. 2014-07-10 13:15:25 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259641]
  647. 2014-07-10 13:15:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259641, u'Koi to Senkyo to Chocolate', -1]
  648. 2014-07-10 13:15:25 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259642]
  649. 2014-07-10 13:15:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259642, u'Dakara Boku wa, H ga Dekinai.', -1]
  650. 2014-07-10 13:15:25 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259643]
  651. 2014-07-10 13:15:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259643, u'Oda Nobuna no Yabou', -1]
  652. 2014-07-10 13:15:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [245821]
  653. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [245821, u'Cardfight!! Vanguard', 1]
  654. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [245821, u'Cardfight!! Vanguard: Asia Circuit Hen', 2]
  655. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [245821, u'Cardfight!! Vanguard: Link Joker Hen', 3]
  656. 2014-07-10 13:15:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259649]
  657. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259649, u'Aesthetica of a Rogue Hero', 1]
  658. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259649, u'Hagure Yuusha no Estetica', 1]
  659. 2014-07-10 13:15:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259649, u'Hagure Yuusha no Aesthetica', 1]
  660. 2014-07-10 13:15:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [146401]
  661. 2014-07-10 13:15:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [146401, u'Inazuma Eleven GO', 2]
  662. 2014-07-10 13:15:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [146401, u'Inazuma Eleven', 1]
  663. 2014-07-10 13:15:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [146401, u'Inazuma Eleven GO: Chrono Stone', 3]
  664. 2014-07-10 13:15:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [78916]
  665. 2014-07-10 13:15:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78916, u'Gantz', -1]
  666. 2014-07-10 13:15:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259653]
  667. 2014-07-10 13:15:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259653, u'Jinrui wa Suitai Shimashita', -1]
  668. 2014-07-10 13:15:28 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [78919]
  669. 2014-07-10 13:15:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78919, u'Genshiken 2', 2]
  670. 2014-07-10 13:15:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78919, u'Genshiken Nidaime', 3]
  671. 2014-07-10 13:15:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78919, u'genshiken2', 2]
  672. 2014-07-10 13:15:28 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [31]
  673. 2014-07-10 13:15:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Indigo League', 1]
  674. 2014-07-10 13:15:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Adventures on the Orange Islands', 2]
  675. 2014-07-10 13:15:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'The Johto Journeys', 3]
  676. 2014-07-10 13:15:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Johto League Champions', 4]
  677. 2014-07-10 13:15:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Master Quest', 5]
  678. 2014-07-10 13:15:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Advanced', 6]
  679. 2014-07-10 13:15:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Advanced Challenge', 7]
  680. 2014-07-10 13:15:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Advanced Battle', 8]
  681. 2014-07-10 13:15:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Battle Frontier', 9]
  682. 2014-07-10 13:15:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Diamond and Pearl', 10]
  683. 2014-07-10 13:15:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Diamond and Pearl: Battle Dimension', 11]
  684. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Diamond and Pearl: Galactic Battles', 12]
  685. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Diamond and Pearl: Sinnoh League Victors', 13]
  686. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Black & White', 14]
  687. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Black & White: Rival Destinies', 15]
  688. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'Black & White: Adventures in Unova', 16]
  689. 2014-07-10 13:15:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31, u'XY', 17]
  690. 2014-07-10 13:15:32 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257098]
  691. 2014-07-10 13:15:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257098, u'Hiiro no Kakera: Tamayori Hime Kitan', 1]
  692. 2014-07-10 13:15:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257098, u'Hiiro no Kakera Dai Ni Shou', 2]
  693. 2014-07-10 13:15:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257098, u'Hiiro no Kakera S2', 2]
  694. 2014-07-10 13:15:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257098, u'Hiiro no Kakera: The Tamayori Princess Saga 2', 2]
  695. 2014-07-10 13:15:32 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [269682]
  696. 2014-07-10 13:15:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269682, u'Servant x Service', -1]
  697. 2014-07-10 13:15:33 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [251982]
  698. 2014-07-10 13:15:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251982, u'Chihayafuru', 1]
  699. 2014-07-10 13:15:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251982, u'Chihayafuru S2', 2]
  700. 2014-07-10 13:15:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251982, u'Chihayafuru 2', 2]
  701. 2014-07-10 13:15:33 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79604]
  702. 2014-07-10 13:15:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u'Black-Lagoon', -1]
  703. 2014-07-10 13:15:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u'\u30d6\u30e9\u30c3\u30af\u30fb\u30e9\u30b0\u30fc\u30f3', -1]
  704. 2014-07-10 13:15:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u'Burakku Rag\u016bn', -1]
  705. 2014-07-10 13:15:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u'Black Lagoon: The Second Barrage', 2]
  706. 2014-07-10 13:15:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u"Black Lagoon Roberta's Blood Trail", 3]
  707. 2014-07-10 13:15:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u'Black Lagoon: Robertas Blood Trail', 3]
  708. 2014-07-10 13:15:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u"Black Lagoon: Roberta's Blood Trail", 3]
  709. 2014-07-10 13:15:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79604, u"Black Lagoon OVA - Roberta's Blood Trail", 3]
  710. 2014-07-10 13:15:35 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [75863]
  711. 2014-07-10 13:15:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75863, u'Beavis and Butthead', -1]
  712. 2014-07-10 13:15:35 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [18569]
  713. 2014-07-10 13:15:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'To Love-Ru', -1]
  714. 2014-07-10 13:15:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'Motto To Love-Ru', 2]
  715. 2014-07-10 13:15:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'Motto To Love-Ru Trouble', 2]
  716. 2014-07-10 13:15:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'To Love-Ru Darkness', 3]
  717. 2014-07-10 13:15:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'To Love Ru', 1]
  718. 2014-07-10 13:15:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18569, u'To Love-Ru Trouble Darkness', 3]
  719. 2014-07-10 13:15:36 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [279396]
  720. 2014-07-10 13:15:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [279396, u'Gokukoku no Brynhildr', -1]
  721. 2014-07-10 13:15:37 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259675]
  722. 2014-07-10 13:15:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259675, u'Uchuu Senkan Yamato 2199', -1]
  723. 2014-07-10 13:15:37 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [75869]
  724. 2014-07-10 13:15:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'\u9b54\u6cd5\u5148\u751f \u30cd\u30ae\u307e!', 1]
  725. 2014-07-10 13:15:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Negima!', 1]
  726. 2014-07-10 13:15:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Le ma\xeetre magicien Negima !', 1]
  727. 2014-07-10 13:15:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Magister Negi Magi', 1]
  728. 2014-07-10 13:15:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Negima!?', 2]
  729. 2014-07-10 13:15:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'\u30cd\u30ae\u307e!?', 2]
  730. 2014-07-10 13:15:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Shin Negima!?', 2]
  731. 2014-07-10 13:15:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Magister Negi Magi Neo', 2]
  732. 2014-07-10 13:15:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75869, u'Negima 2', 2]
  733. 2014-07-10 13:15:39 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [173271]
  734. 2014-07-10 13:15:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [173271, u'Seitokai Yakuindomo', 1]
  735. 2014-07-10 13:15:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [173271, u'Seitokai Yakuindomo Bleep', 2]
  736. 2014-07-10 13:15:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [173271, u'Seitokai Yakuindomo S2', 2]
  737. 2014-07-10 13:15:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [173271, u'Seitokai Yakuindomo *', 2]
  738. 2014-07-10 13:15:40 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [72549]
  739. 2014-07-10 13:15:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [72549, u'Big Brother UK', 15]
  740. 2014-07-10 13:15:40 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [74852]
  741. 2014-07-10 13:15:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [74852, u'Avatar', -1]
  742. 2014-07-10 13:15:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [74852, u'Avatar \u2013 Der Herr der Elemente', -1]
  743. 2014-07-10 13:15:40 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [22117]
  744. 2014-07-10 13:15:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [22117, u'Natsu no Arashi!', 1]
  745. 2014-07-10 13:15:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [22117, u'Natsu no Arashi! Akinai-chuu', 2]
  746. 2014-07-10 13:15:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [22117, u'Natsu no Arashi Akinai-chuu', 2]
  747. 2014-07-10 13:15:41 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [247911]
  748. 2014-07-10 13:15:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247911, u'Yondemasu yo, Azazel-san. Z', 2]
  749. 2014-07-10 13:15:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247911, u'\u3088\u3093\u3067\u307e\u3059\u3088, \u30a2\u30b6\u30bc\u30eb\u3055\u3093. Z', 2]
  750. 2014-07-10 13:15:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247911, u'Yondemasu yo, Azazel-san.', -1]
  751. 2014-07-10 13:15:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247911, u'Yondemasu yo, Azazel-san. (2011)', -1]
  752. 2014-07-10 13:15:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [247911, u'\u3088\u3093\u3067\u307e\u3059\u3088, \u30a2\u30b6\u30bc\u30eb\u3055\u3093. (2011)', -1]
  753. 2014-07-10 13:15:42 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254652]
  754. 2014-07-10 13:15:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder to Randoseru Do', 1]
  755. 2014-07-10 13:15:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder to Randoseru Re', 2]
  756. 2014-07-10 13:15:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder and Randsell Do', 1]
  757. 2014-07-10 13:15:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder and Randsell Re', 2]
  758. 2014-07-10 13:15:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder and Randsell Mi', 3]
  759. 2014-07-10 13:15:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254652, u'Recorder to Randoseru Mi', 3]
  760. 2014-07-10 13:15:43 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [273002]
  761. 2014-07-10 13:15:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [273002, u'Yuushibu', -1]
  762. 2014-07-10 13:15:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [273002, u'Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku o Ketsui Shimashita', -1]
  763. 2014-07-10 13:15:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [273002, u'\u52c7\u8005\u306b\u306a\u308c\u306a\u304b\u3063\u305f\u4ffa\u306f\u3057\u3076\u3057\u3076\u5c31\u8077\u3092\u6c7a\u610f\u3057\u307e\u3057\u305f.', -1]
  764. 2014-07-10 13:15:44 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [27495]
  765. 2014-07-10 13:15:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [27495, u'Shinryaku!? Ika Musume', 2]
  766. 2014-07-10 13:15:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [27495, u'Shinryaku! Ika Musume', 1]
  767. 2014-07-10 13:15:44 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278126]
  768. 2014-07-10 13:15:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278126, u'Akuma no Riddle', -1]
  769. 2014-07-10 13:15:44 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278127]
  770. 2014-07-10 13:15:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278127, u'Hitsugi no Chaika', -1]
  771. 2014-07-10 13:15:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [273009]
  772. 2014-07-10 13:15:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [273009, u'Yozakura Quartet: Hana no Uta', 1]
  773. 2014-07-10 13:15:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [273009, u'\u591c\u685c\u56db\u91cd\u594f ~\u30cf\u30ca\u30ce\u30a6\u30bf~', 1]
  774. 2014-07-10 13:15:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [78962]
  775. 2014-07-10 13:15:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana', 1]
  776. 2014-07-10 13:15:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana 2', 2]
  777. 2014-07-10 13:15:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana II', 2]
  778. 2014-07-10 13:15:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana 3', 3]
  779. 2014-07-10 13:15:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana Second', 2]
  780. 2014-07-10 13:15:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Shakugan no Shana Final', 3]
  781. 2014-07-10 13:15:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'Burning Eyes Shana', -1]
  782. 2014-07-10 13:15:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'\u707c\u773c\u306e\u30b7\u30e3\u30ca', 1]
  783. 2014-07-10 13:15:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'\uc791\uc548\uc758 \uc0e4\ub098 2\uae30', 2]
  784. 2014-07-10 13:15:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78962, u'\u707c\u773c\u306e\u30b7\u30e3\u30caIII', 3]
  785. 2014-07-10 13:15:47 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [15475]
  786. 2014-07-10 13:15:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u'Hayate no Gotoku!!', 2]
  787. 2014-07-10 13:15:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u'Hayate no Gotoku!', 1]
  788. 2014-07-10 13:15:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u'Hayate no Gotoku - 2nd Season', 2]
  789. 2014-07-10 13:15:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u'Hayate No Gotoku!! 2nd Season', 2]
  790. 2014-07-10 13:15:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u"Hayate no Gotoku! - Can't Take My Eyes Off You", 3]
  791. 2014-07-10 13:15:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u"Hayate the Combat Butler! - Can't Take My Eyes Off You", 3]
  792. 2014-07-10 13:15:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15475, u'Hayate no Gotoku! Cuties', 4]
  793. 2014-07-10 13:15:48 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275574]
  794. 2014-07-10 13:15:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275574, u'Mahou Sensou', -1]
  795. 2014-07-10 13:15:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [282609]
  796. 2014-07-10 13:15:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [282609, u'Season', 1]
  797. 2014-07-10 13:15:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275578]
  798. 2014-07-10 13:15:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275578, u'Z/X IGNITION', 1]
  799. 2014-07-10 13:15:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275578, u'Z/X IGNITION', 1]
  800. 2014-07-10 13:15:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275579]
  801. 2014-07-10 13:15:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275579, u'Nourin', -1]
  802. 2014-07-10 13:15:50 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275583]
  803. 2014-07-10 13:15:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275583, u'Tonari no Seki-kun', -1]
  804. 2014-07-10 13:15:50 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [252345]
  805. 2014-07-10 13:15:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'Kyoukai Senjou no Horizon', -1]
  806. 2014-07-10 13:15:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'Kyoukaisen-jou no Horizon', -1]
  807. 2014-07-10 13:15:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'\u5883\u754c\u7dda\u4e0a\u306e\u30db\u30e9\u30a4\u30be\u30f3', -1]
  808. 2014-07-10 13:15:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'Kyoukai Senjou no Horizon II', 2]
  809. 2014-07-10 13:15:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'Kyoukaisen-jou no Horizon II', 2]
  810. 2014-07-10 13:15:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'\u5883\u754c\u7dda\u4e0a\u306e\u30db\u30e9\u30a4\u30be\u30f3 II', 2]
  811. 2014-07-10 13:15:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252345, u'Kyoukai Senjou no Horizon S2', 2]
  812. 2014-07-10 13:15:51 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [76932]
  813. 2014-07-10 13:15:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76932, u'\u3089\u3093\u307e1/2', 1]
  814. 2014-07-10 13:15:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76932, u'Ranma 1/2', 1]
  815. 2014-07-10 13:15:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76932, u'Ranma 1/2 (1989)', 2]
  816. 2014-07-10 13:15:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76932, u'Ranma 1/2 Nettou Hen', 2]
  817. 2014-07-10 13:15:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76932, u'\u3089\u3093\u307e1/2 \u71b1\u95d8\u7de8', 2]
  818. 2014-07-10 13:15:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [71361]
  819. 2014-07-10 13:15:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'Inuyasha', 1]
  820. 2014-07-10 13:15:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'\u72ac\u591c\u53c9', 1]
  821. 2014-07-10 13:15:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'Inu Yasha', 1]
  822. 2014-07-10 13:15:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'Inuyasha Kanketsuhen', 2]
  823. 2014-07-10 13:15:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'Inuyasha: The Final Act', 2]
  824. 2014-07-10 13:15:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71361, u'\u72ac\u591c\u53c9 \u5b8c\u7d50\u7de8', 2]
  825. 2014-07-10 13:15:54 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [33929]
  826. 2014-07-10 13:15:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33929, u'OreShura', -1]
  827. 2014-07-10 13:15:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33929, u'Ore no Kanojo to Osananajimi ga Shuraba Sugiru', -1]
  828. 2014-07-10 13:15:54 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278154]
  829. 2014-07-10 13:15:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278154, u'Sidonia no Kishi', -1]
  830. 2014-07-10 13:15:54 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [105611]
  831. 2014-07-10 13:15:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [105611, u'Hotaru no Hikari', 1]
  832. 2014-07-10 13:15:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [105611, u'Hotaru no Hikari 2', 2]
  833. 2014-07-10 13:15:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278156]
  834. 2014-07-10 13:15:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278156, u'Mahou Shoujo Taisen', -1]
  835. 2014-07-10 13:15:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [27277]
  836. 2014-07-10 13:15:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [27277, u'Freezing Vibration', 2]
  837. 2014-07-10 13:15:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [27277, u'Freezing (2011)', 1]
  838. 2014-07-10 13:15:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [27277, u'Freezing', 1]
  839. 2014-07-10 13:15:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [26254]
  840. 2014-07-10 13:15:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [26254, u'The Last Airbender: Legend of Korra', -1]
  841. 2014-07-10 13:15:56 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [33936]
  842. 2014-07-10 13:15:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33936, u'Sasami Ganbaranai', -1]
  843. 2014-07-10 13:15:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33936, u'Sasami-san @ Ganbaranai', -1]
  844. 2014-07-10 13:15:56 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [33937]
  845. 2014-07-10 13:15:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33937, u'Kotoura', -1]
  846. 2014-07-10 13:15:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [33937, u'\u7434\u6d66\u3055\u3093', -1]
  847. 2014-07-10 13:15:56 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE (status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) OR (status IN (2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409) AND location != '')) AND season != 0 and episode != 0 AND airdate <= 735424 GROUP BY showid
  848. 2014-07-10 13:15:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [75411]
  849. 2014-07-10 13:15:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [75411, u'Rozen Maiden Traumend', 2]
  850. 2014-07-10 13:15:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [71278]
  851. 2014-07-10 13:15:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71278, u'Hellsing', 1]
  852. 2014-07-10 13:15:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [195571]
  853. 2014-07-10 13:15:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195571, u'Tamayura ~hitotose~', 1]
  854. 2014-07-10 13:15:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195571, u'Tamayura ~more agrressive~', 2]
  855. 2014-07-10 13:15:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195571, u'Tamayura More Aggressive', 2]
  856. 2014-07-10 13:15:58 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [84591]
  857. 2014-07-10 13:15:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84591, u'Maria+Holic', 1]
  858. 2014-07-10 13:15:58 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7 GROUP BY showid
  859. 2014-07-10 13:15:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84591, u'Maria Holic Alive', 2]
  860. 2014-07-10 13:15:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84591, u'Maria\u2020Holic Alive', 2]
  861. 2014-07-10 13:15:58 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [260946]
  862. 2014-07-10 13:15:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [260946, u'Danball Senki', 1]
  863. 2014-07-10 13:15:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [260946, u'Danball Senki W', 2]
  864. 2014-07-10 13:15:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [260946, u'Danball Senki Wars', 3]
  865. 2014-07-10 13:15:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [159901]
  866. 2014-07-10 13:15:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [159901, u'The Story of Science', -1]
  867. 2014-07-10 13:15:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275614]
  868. 2014-07-10 13:15:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275614, u'Saikin, Imouto no Yousu ga Chotto Okashiinda ga.', 1]
  869. 2014-07-10 13:15:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275614, u'ImoCho', 1]
  870. 2014-07-10 13:16:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275614, u'Recently, My Sister is Unusual', 1]
  871. 2014-07-10 13:16:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83105]
  872. 2014-07-10 13:16:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83105, u'Tatchi', -1]
  873. 2014-07-10 13:16:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83105, u'\u30bf\u30c3\u30c1', -1]
  874. 2014-07-10 13:16:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [31395]
  875. 2014-07-10 13:16:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31395, u'Ginga Eiyuu Densetsu', -1]
  876. 2014-07-10 13:16:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [78500]
  877. 2014-07-10 13:16:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Bishoujo Senshi Sailor Moon', 1]
  878. 2014-07-10 13:16:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Bishoujo Senshi Sailor Moon R', 2]
  879. 2014-07-10 13:16:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailor Moon R', 2]
  880. 2014-07-10 13:16:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailor Moon', 1]
  881. 2014-07-10 13:16:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Bishoujo Senshi Sailor Moon S', 3]
  882. 2014-07-10 13:16:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailor Moon S', 3]
  883. 2014-07-10 13:16:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Bishoujo Senshi Sailor Moon Super S', 4]
  884. 2014-07-10 13:16:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailor Moon Super S', 4]
  885. 2014-07-10 13:16:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Bishoujo Senshi Sailor Moon: Sailor Stars', 5]
  886. 2014-07-10 13:16:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailor Moon Sailor Stars', 5]
  887. 2014-07-10 13:16:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [78500, u'Sailormoon Uncut', 1]
  888. 2014-07-10 13:16:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79525]
  889. 2014-07-10 13:16:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79525, u'Code Geass: Boukoku no Akito', -1]
  890. 2014-07-10 13:16:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [250022]
  891. 2014-07-10 13:16:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuru Yuri\u266a\u266a', 2]
  892. 2014-07-10 13:16:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuru Yuri 2', 2]
  893. 2014-07-10 13:16:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuruyuri', 1]
  894. 2014-07-10 13:16:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuruyuri 2', 2]
  895. 2014-07-10 13:16:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuruyuri\u266a\u266a', 2]
  896. 2014-07-10 13:16:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'YuruYuri S2', 2]
  897. 2014-07-10 13:16:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [250022, u'Yuru Yuri Season 2', 2]
  898. 2014-07-10 13:16:04 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [114801]
  899. 2014-07-10 13:16:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114801, u'\u30d5\u30a7\u30a2\u30ea\u30fc\u30c6\u30a4\u30eb', -1]
  900. 2014-07-10 13:16:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114801, u'Fairy Tail S2', 2]
  901. 2014-07-10 13:16:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114801, u'Fairy Tail 2', 2]
  902. 2014-07-10 13:16:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114801, u'Fairy Tail (2014)', 2]
  903. 2014-07-10 13:16:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267432]
  904. 2014-07-10 13:16:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267432, u'Suisei no Gargantia', -1]
  905. 2014-07-10 13:16:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267433]
  906. 2014-07-10 13:16:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267433, u'Red Data Girl', -1]
  907. 2014-07-10 13:16:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80042]
  908. 2014-07-10 13:16:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80042, u'Darker Than Black: Kuro no Keiyakusha', 1]
  909. 2014-07-10 13:16:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80042, u'Darker Than Black: Gemini of the Meteor', 2]
  910. 2014-07-10 13:16:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80042, u'Darker Than Black: Ryuusei no Gemini', 2]
  911. 2014-07-10 13:16:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267435]
  912. 2014-07-10 13:16:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267435, u'Yahari Ore no Seishun Love Come wa Machigatteiru.', -1]
  913. 2014-07-10 13:16:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267435, u'Yahari Ore no Seishun Love Come wa Machigatteiru', -1]
  914. 2014-07-10 13:16:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267435, u'Yahari Ore no Seishun Love Comedy wa Machigatteiru - My Teenage RomCom SNAFU', -1]
  915. 2014-07-10 13:16:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275628]
  916. 2014-07-10 13:16:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275628, u'Sekai Seifuku - Bouryaku no Zvezda', -1]
  917. 2014-07-10 13:16:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275628, u'Sekai Seifuku ~Bouryaku no Zvezda~', -1]
  918. 2014-07-10 13:16:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275629]
  919. 2014-07-10 13:16:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275629, u'Wizard Barristers: Benmashi Cecil', 1]
  920. 2014-07-10 13:16:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267439]
  921. 2014-07-10 13:16:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267439, u'Mushibugyo', -1]
  922. 2014-07-10 13:16:08 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [26288]
  923. 2014-07-10 13:16:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [26288, u'Nurarihyon no Mago: Sennen Makyou', 2]
  924. 2014-07-10 13:16:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [26288, u'Nurarihyon no Mago', 1]
  925. 2014-07-10 13:16:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [26288, u'Nura: Rise of the Yokai Clan', -1]
  926. 2014-07-10 13:16:08 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267441]
  927. 2014-07-10 13:16:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267441, u'Hataraku Maou-sama!', -1]
  928. 2014-07-10 13:16:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267441, u'The Devil Is a Part-Timer!', 1]
  929. 2014-07-10 13:16:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267441, u'Hataraku Maou-sama!', 1]
  930. 2014-07-10 13:16:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275634]
  931. 2014-07-10 13:16:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275634, u'Re Hamatora', 2]
  932. 2014-07-10 13:16:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278196]
  933. 2014-07-10 13:16:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278196, u'Bokura wa Minna Kawaisou', -1]
  934. 2014-07-10 13:16:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278197]
  935. 2014-07-10 13:16:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278197, u'Fuuun Ishin Dai Shougun', -1]
  936. 2014-07-10 13:16:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262838]
  937. 2014-07-10 13:16:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262838, u'Shinsekai Yori', -1]
  938. 2014-07-10 13:16:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262838, u'Shin Sekai Yori', -1]
  939. 2014-07-10 13:16:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278199]
  940. 2014-07-10 13:16:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278199, u'Mekakucity Actors', -1]
  941. 2014-07-10 13:16:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79545]
  942. 2014-07-10 13:16:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79545, u'seul face a la nature', -1]
  943. 2014-07-10 13:16:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [41658]
  944. 2014-07-10 13:16:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [41658, u'Akuma no Riddle', -1]
  945. 2014-07-10 13:16:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [22559]
  946. 2014-07-10 13:16:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [22559, u'Minuscule', -1]
  947. 2014-07-10 13:16:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [12476]
  948. 2014-07-10 13:16:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [12476, u'Disgaea', -1]
  949. 2014-07-10 13:16:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [12476, u'\u9b54\u754c\u6226\u8a18\u30c7\u30a3\u30b9\u30ac\u30a4\u30a2', -1]
  950. 2014-07-10 13:16:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254653]
  951. 2014-07-10 13:16:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254653, u'High School DxD New', 2]
  952. 2014-07-10 13:16:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254653, u'High School DxD', 1]
  953. 2014-07-10 13:16:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254653, u'Highschool DxD', 1]
  954. 2014-07-10 13:16:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254653, u'Highschool DxD New', 2]
  955. 2014-07-10 13:16:12 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [270068]
  956. 2014-07-10 13:16:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270068, u'Kamisama no Inai Nichiyoubi', -1]
  957. 2014-07-10 13:16:12 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [256705]
  958. 2014-07-10 13:16:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [256705, u'Uchuu Kyoudai', -1]
  959. 2014-07-10 13:16:13 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254658]
  960. 2014-07-10 13:16:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Capital Craze Comic (2012)', 1]
  961. 2014-07-10 13:16:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousougiga (2013)', 2]
  962. 2014-07-10 13:16:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousougiga (2012)', 1]
  963. 2014-07-10 13:16:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousogiga (2012)', 1]
  964. 2014-07-10 13:16:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousougiga', 2]
  965. 2014-07-10 13:16:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Capital Craze Comic (2013)', 2]
  966. 2014-07-10 13:16:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousogiga (2013)', 2]
  967. 2014-07-10 13:16:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Mirror Capital', 2]
  968. 2014-07-10 13:16:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'\u4eac\u9a12\u622f\u753b (2013)', 2]
  969. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'\u4eac\u9a12\u622f\u753b (2012)', 1]
  970. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousou Giga TV', 2]
  971. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254658, u'Kyousougiga(TVA)', 0]
  972. 2014-07-10 13:16:15 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [32963]
  973. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32963, u'Suki-tte Ii na yo', -1]
  974. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32963, u'Sukitte Iinayo', -1]
  975. 2014-07-10 13:16:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32963, u'Sukitte Ii na yo', -1]
  976. 2014-07-10 13:16:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254662]
  977. 2014-07-10 13:16:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254662, u'Rinne no Lagrange: Flower Declaration of Your Heart', 1]
  978. 2014-07-10 13:16:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254662, u'Rinne no Lagrange', -1]
  979. 2014-07-10 13:16:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254662, u'Rinne no Lagrange: Flower Declaration of Your Heart - Season 2', 2]
  980. 2014-07-10 13:16:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254662, u'\u8f2a\u5efb\u306e\u30e9\u30b0\u30e9\u30f3\u30b8\u30a7 Flower Declaration of Your Heart - Season 2', 2]
  981. 2014-07-10 13:16:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254662, u'\u8f2a\u5efb\u306e\u30e9\u30b0\u30e9\u30f3\u30b8\u30a7 Flower Declaration of Your Heart', 1]
  982. 2014-07-10 13:16:17 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254663]
  983. 2014-07-10 13:16:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254663, u'Moretsu Pirates', 1]
  984. 2014-07-10 13:16:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254663, u'Mouretsu Pirates', 1]
  985. 2014-07-10 13:16:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254663, u'Moretsu Uchuu Kaizoku', 1]
  986. 2014-07-10 13:16:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254663, u'Mouretsu Uchuu Kaizoku', 1]
  987. 2014-07-10 13:16:17 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262856]
  988. 2014-07-10 13:16:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262856, u'Teekyuu', 1]
  989. 2014-07-10 13:16:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262856, u'Teekyuu 2', 2]
  990. 2014-07-10 13:16:18 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [272073]
  991. 2014-07-10 13:16:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [272073, u'Nagi-Asu: A Lull in the Sea', -1]
  992. 2014-07-10 13:16:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [272073, u'Nagi no Asukara', -1]
  993. 2014-07-10 13:16:18 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254667]
  994. 2014-07-10 13:16:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254667, u'Senki Zesshou Symphogear', 1]
  995. 2014-07-10 13:16:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254667, u'Senki Zesshou Symphogear G', 2]
  996. 2014-07-10 13:16:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [251085]
  997. 2014-07-10 13:16:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [251085, u'The Last Airbender: Legend of Korra', -1]
  998. 2014-07-10 13:16:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [24781]
  999. 2014-07-10 13:16:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [24781, u'Baka to Test to Shoukanjuu Ni!', 2]
  1000. 2014-07-10 13:16:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [24781, u'Baka to Test to Shoukanjuu', 1]
  1001. 2014-07-10 13:16:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [24781, u'Baka to Test to Shokanju', 1]
  1002. 2014-07-10 13:16:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [24781, u'Baka to Test to Shokanju Ni', 2]
  1003. 2014-07-10 13:16:20 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264056]
  1004. 2014-07-10 13:16:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264056, u'Maoyuu Maou Yuusha', -1]
  1005. 2014-07-10 13:16:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264056, u'\u307e\u304a\u3086\u3046\u9b54\u738b\u52c7\u8005', -1]
  1006. 2014-07-10 13:16:20 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267436]
  1007. 2014-07-10 13:16:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267436, u'Photokano', -1]
  1008. 2014-07-10 13:16:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267436, u'\u30d5\u30a9\u30c8\u30ab\u30ce', -1]
  1009. 2014-07-10 13:16:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [26839]
  1010. 2014-07-10 13:16:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [26839, u'Rick der Restaurator', -1]
  1011. 2014-07-10 13:16:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [42714]
  1012. 2014-07-10 13:16:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [42714, u'Season', 1]
  1013. 2014-07-10 13:16:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257756]
  1014. 2014-07-10 13:16:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257756, u'Jormungand', -1]
  1015. 2014-07-10 13:16:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257756, u'Jormungand : Perfect Order', 2]
  1016. 2014-07-10 13:16:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257756, u'Jormungand Perfect Order', 2]
  1017. 2014-07-10 13:16:22 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257762]
  1018. 2014-07-10 13:16:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257762, u'Sakamichi no Apollon', -1]
  1019. 2014-07-10 13:16:22 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [219771]
  1020. 2014-07-10 13:16:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219771, u'Beelzebub TV', -1]
  1021. 2014-07-10 13:16:22 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [84709]
  1022. 2014-07-10 13:16:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84709, u'Eve no Jikan', 1]
  1023. 2014-07-10 13:16:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84709, u'Time of Eve', 1]
  1024. 2014-07-10 13:16:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [84709, u'\u30a4\u30f4\u306e\u6642\u9593', 1]
  1025. 2014-07-10 13:16:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [255206]
  1026. 2014-07-10 13:16:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [255206, u'Poyopoyo', -1]
  1027. 2014-07-10 13:16:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [272849]
  1028. 2014-07-10 13:16:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [272849, u'Space Dandy 2', 2]
  1029. 2014-07-10 13:16:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [270057]
  1030. 2014-07-10 13:16:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270057, u'Inu to Hasami wa Tsukaiyou', -1]
  1031. 2014-07-10 13:16:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270057, u'InuHasa', -1]
  1032. 2014-07-10 13:16:24 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [82154]
  1033. 2014-07-10 13:16:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch X365', 2]
  1034. 2014-07-10 13:16:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch x Hoshimittsu', 3]
  1035. 2014-07-10 13:16:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch x Honeycomb', 4]
  1036. 2014-07-10 13:16:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch Hoshimittsu', 3]
  1037. 2014-07-10 13:16:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch Honeycomb', 4]
  1038. 2014-07-10 13:16:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Hidamari Sketch', 1]
  1039. 2014-07-10 13:16:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82154, u'Sunshine Sketch', 1]
  1040. 2014-07-10 13:16:25 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [129261]
  1041. 2014-07-10 13:16:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [129261, u'Spartacus: Gods of the Arena', 0]
  1042. 2014-07-10 13:16:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [270062]
  1043. 2014-07-10 13:16:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270062, u'Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui', -1]
  1044. 2014-07-10 13:16:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [270064]
  1045. 2014-07-10 13:16:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270064, u'Kitakubu Katsudou Kiroku', -1]
  1046. 2014-07-10 13:16:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [270065]
  1047. 2014-07-10 13:16:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270065, u'Free!', 1]
  1048. 2014-07-10 13:16:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [270065, u'Free! Eternal Summer', 2]
  1049. 2014-07-10 13:16:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [171731]
  1050. 2014-07-10 13:16:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171731, u'Nurarihyon no Mago: Sennen Makyou', 2]
  1051. 2014-07-10 13:16:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171731, u'Nurarihyon no Mago', 1]
  1052. 2014-07-10 13:16:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171731, u'Nura: Rise of the Yokai Clan', -1]
  1053. 2014-07-10 13:16:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [70900]
  1054. 2014-07-10 13:16:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D Fifth Stage', 5]
  1055. 2014-07-10 13:16:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D Second Stage', 2]
  1056. 2014-07-10 13:16:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D Third Stage', 3]
  1057. 2014-07-10 13:16:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D Fourth Stage', 4]
  1058. 2014-07-10 13:16:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D 2nd Stage', 2]
  1059. 2014-07-10 13:16:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D 3rd Stage', 3]
  1060. 2014-07-10 13:16:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D 4th Stage', 4]
  1061. 2014-07-10 13:16:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D 5th Stage', 5]
  1062. 2014-07-10 13:16:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [70900, u'Initial D Final Stage', 6]
  1063. 2014-07-10 13:16:29 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [173301]
  1064. 2014-07-10 13:16:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [173301, u'Asobi ni Iku yo!', -1]
  1065. 2014-07-10 13:16:29 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278262]
  1066. 2014-07-10 13:16:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278262, u'Kenzen Robo Daimidaler', 1]
  1067. 2014-07-10 13:16:29 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [76023]
  1068. 2014-07-10 13:16:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Chronicle', 1]
  1069. 2014-07-10 13:16:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa: RESERVoir CHRoNiCLE', 1]
  1070. 2014-07-10 13:16:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Chronicle Dai 2 Series', 2]
  1071. 2014-07-10 13:16:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa S2', 2]
  1072. 2014-07-10 13:16:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Tokyo Revelations', 3]
  1073. 2014-07-10 13:16:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Chronicle Tokyo Revelations', 3]
  1074. 2014-07-10 13:16:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Shunraiki', 4]
  1075. 2014-07-10 13:16:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa: Spring Thunder Chronicles', 4]
  1076. 2014-07-10 13:16:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Chronicles 2', 2]
  1077. 2014-07-10 13:16:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Reservoir Chronicle Tokyo Revelations', 3]
  1078. 2014-07-10 13:16:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76023, u'Tsubasa Reservoir Chronicle Shunraiki', 4]
  1079. 2014-07-10 13:16:31 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1080. 2014-07-10 13:16:31 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [195711]
  1081. 2014-07-10 13:16:31 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1082. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'The World God Only Knows - Goddesses Arc', 3]
  1083. 2014-07-10 13:16:32 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1084. 2014-07-10 13:16:32 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1085. 2014-07-10 13:16:32 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1086. 2014-07-10 13:16:32 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1087. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'The World God Only Knows II', 2]
  1088. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'The World God Only Knows', 1]
  1089. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'The World God Only Knows 2', 2]
  1090. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'The World God Only Knows S2', 2]
  1091. 2014-07-10 13:16:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'Kami Nomi zo Shiru Sekai', 1]
  1092. 2014-07-10 13:16:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195711, u'Kami Nomi zo Shiru Sekai II', 2]
  1093. 2014-07-10 13:16:33 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [272697]
  1094. 2014-07-10 13:16:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [272697, u'Kyoukai no Kanata', -1]
  1095. 2014-07-10 13:16:33 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [517377]
  1096. 2014-07-10 13:16:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [517377, u'The Armstrong and Miller Show', 5]
  1097. 2014-07-10 13:16:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [517377, u'The Armstrong and Miller Show', 6]
  1098. 2014-07-10 13:16:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [517377, u'The Armstrong and Miller Show', 7]
  1099. 2014-07-10 13:16:34 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79106]
  1100. 2014-07-10 13:16:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'Jigoku Shoujo', 1]
  1101. 2014-07-10 13:16:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'\u5730\u7344\u5c11\u5973', 1]
  1102. 2014-07-10 13:16:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'Hell Girl: Two Mirrors', 2]
  1103. 2014-07-10 13:16:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'Jigoku Shoujo Futakomori', 2]
  1104. 2014-07-10 13:16:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'\u5730\u7344\u5c11\u5973 \u4e8c\u7c60', 2]
  1105. 2014-07-10 13:16:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'Hell Girl: Three Vessels', 3]
  1106. 2014-07-10 13:16:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'Jigoku Shoujo Mitsuganae', 3]
  1107. 2014-07-10 13:16:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79106, u'\u5730\u7344\u5c11\u5973\u4e09\u9f0e', 3]
  1108. 2014-07-10 13:16:35 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80644]
  1109. 2014-07-10 13:16:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80644, u'Clannad', 1]
  1110. 2014-07-10 13:16:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80644, u'Clannad After Story', 2]
  1111. 2014-07-10 13:16:36 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80646]
  1112. 2014-07-10 13:16:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80646, u'Frontline (US)', -1]
  1113. 2014-07-10 13:16:36 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267649]
  1114. 2014-07-10 13:16:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267649, u'Dansai Bunri no Crime Edge', -1]
  1115. 2014-07-10 13:16:36 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [272138]
  1116. 2014-07-10 13:16:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [272138, u'Golden Time', 1]
  1117. 2014-07-10 13:16:37 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [82135]
  1118. 2014-07-10 13:16:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82135, u'The Gruen Transfer', -1]
  1119. 2014-07-10 13:16:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82135, u'Gruen Nation', -1]
  1120. 2014-07-10 13:16:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82135, u'Gruen Sweat', -1]
  1121. 2014-07-10 13:16:37 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264972]
  1122. 2014-07-10 13:16:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264972, u'Boku no Imouto wa "Osaka Okan"', -1]
  1123. 2014-07-10 13:16:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264972, u'Boku no Imouto wa "Oosaka Okan"', -1]
  1124. 2014-07-10 13:16:38 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [28943]
  1125. 2014-07-10 13:16:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuru Yuri\u266a\u266a', 2]
  1126. 2014-07-10 13:16:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuru Yuri 2', 2]
  1127. 2014-07-10 13:16:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuruyuri', 1]
  1128. 2014-07-10 13:16:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuruyuri 2', 2]
  1129. 2014-07-10 13:16:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuruyuri\u266a\u266a', 2]
  1130. 2014-07-10 13:16:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'YuruYuri S2', 2]
  1131. 2014-07-10 13:16:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [28943, u'Yuru Yuri Season 2', 2]
  1132. 2014-07-10 13:16:39 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [279826]
  1133. 2014-07-10 13:16:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [279826, u'Argevollen', -1]
  1134. 2014-07-10 13:16:39 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [193811]
  1135. 2014-07-10 13:16:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [193811, u'Bakuman.', 1]
  1136. 2014-07-10 13:16:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [193811, u'Bakuman. (2011)', 2]
  1137. 2014-07-10 13:16:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [193811, u'Bakuman. (2012)', 3]
  1138. 2014-07-10 13:16:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [193811, u'Bakuman', -1]
  1139. 2014-07-10 13:16:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [193811, u'Bakuman S3', 3]
  1140. 2014-07-10 13:16:40 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81178]
  1141. 2014-07-10 13:16:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'Spice and Wolf', 1]
  1142. 2014-07-10 13:16:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'Ookami to Koushinryou', 1]
  1143. 2014-07-10 13:16:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'\u72fc\u3068\u9999\u8f9b\u6599', 1]
  1144. 2014-07-10 13:16:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'Spice and Wolf II', 2]
  1145. 2014-07-10 13:16:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'Ookami to Koushinryou II', 2]
  1146. 2014-07-10 13:16:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81178, u'\u72fc\u3068\u9999\u8f9b\u6599II', 2]
  1147. 2014-07-10 13:16:41 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [268059]
  1148. 2014-07-10 13:16:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268059, u'Arata Kangatari', -1]
  1149. 2014-07-10 13:16:42 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [87841]
  1150. 2014-07-10 13:16:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'\u54b2-Saki-', 1]
  1151. 2014-07-10 13:16:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'Saki: Achiga-hen - Episode of Side-A', 2]
  1152. 2014-07-10 13:16:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'Saki Episode of Side A', 2]
  1153. 2014-07-10 13:16:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'\u54b2-Saki-\u963f\u77e5\u8cc0\u7de8 episode of side-A', 2]
  1154. 2014-07-10 13:16:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'Saki: Zenkoku Hen', 3]
  1155. 2014-07-10 13:16:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87841, u'\u54b2 -Saki- \u5168\u56fd\u7de8', 3]
  1156. 2014-07-10 13:16:43 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE (status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) OR (status IN (2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409) AND location != '')) AND season != 0 and episode != 0 AND airdate <= 735424 GROUP BY showid
  1157. 2014-07-10 13:16:43 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81184]
  1158. 2014-07-10 13:16:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'Rosario to Vampire', 1]
  1159. 2014-07-10 13:16:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'Rosario + Vampire', 1]
  1160. 2014-07-10 13:16:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'\u30ed\u30b6\u30ea\u30aa\u3068\u30d0\u30f3\u30d1\u30a4\u30a2', 1]
  1161. 2014-07-10 13:16:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'Rosario to Vampire Capu2', 2]
  1162. 2014-07-10 13:16:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'Rosario + Vampire: CAPU2', 2]
  1163. 2014-07-10 13:16:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81184, u'\u30ed\u30b6\u30ea\u30aa\u3068\u30d0\u30f3\u30d1\u30a4\u30a2 Capu2', 2]
  1164. 2014-07-10 13:16:44 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [116001]
  1165. 2014-07-10 13:16:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [116001, u'Seitokai no Ichizon', -1]
  1166. 2014-07-10 13:16:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [116001, u"Student Council's Discretion", -1]
  1167. 2014-07-10 13:16:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [116001, u'Seitokai no Ichizon Lv2', 2]
  1168. 2014-07-10 13:16:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278818]
  1169. 2014-07-10 13:16:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278818, u'Gochuumon wa Usagi Desu ka?', -1]
  1170. 2014-07-10 13:16:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278819]
  1171. 2014-07-10 13:16:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278819, u'Isshuukan Friends', -1]
  1172. 2014-07-10 13:16:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [140071]
  1173. 2014-07-10 13:16:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [140071, u'Ichiban Ushiro no Daimaou', -1]
  1174. 2014-07-10 13:16:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262954]
  1175. 2014-07-10 13:16:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262954, u"JoJo's Bizarre Adventure", -1]
  1176. 2014-07-10 13:16:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262954, u'JoJo no Kimyou na Bouken (2012)', -1]
  1177. 2014-07-10 13:16:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262954, u"JoJo's Bizarre Adventure - Stardust Crusaders", 2]
  1178. 2014-07-10 13:16:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262954, u"JoJo's Bizarre Adventure", 1]
  1179. 2014-07-10 13:16:46 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278151]
  1180. 2014-07-10 13:16:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278151, u'Atelier Escha & Logy - Alchemists of the Dusk Sky', -1]
  1181. 2014-07-10 13:16:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278151, u'Escha & Logy no Atelier: Tasogare no Sora no Renkinjutsushi', -1]
  1182. 2014-07-10 13:16:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278151, u'Atelier Escha & Logy: Alchemists of the Dusk Sky', -1]
  1183. 2014-07-10 13:16:47 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257837]
  1184. 2014-07-10 13:16:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257837, u'Naruto SD: Rock Lee no Seishun Full-Power Ninden', -1]
  1185. 2014-07-10 13:16:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257837, u'Naruto SD - Rock Lee no Seishun Full - Power Ninden', -1]
  1186. 2014-07-10 13:16:47 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79151]
  1187. 2014-07-10 13:16:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate Stay Night', 1]
  1188. 2014-07-10 13:16:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate/Zero', 2]
  1189. 2014-07-10 13:16:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate Zero', 2]
  1190. 2014-07-10 13:16:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate/Zero (2012)', 3]
  1191. 2014-07-10 13:16:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate Zero S2', 3]
  1192. 2014-07-10 13:16:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79151, u'Fate Zero', 3]
  1193. 2014-07-10 13:16:48 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [271152]
  1194. 2014-07-10 13:16:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [271152, u'Stella Jogakuin Koutouka C3-bu', -1]
  1195. 2014-07-10 13:16:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [271152, u"Stella Women's Academy, High School Division Class C\xb3", -1]
  1196. 2014-07-10 13:16:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [76081]
  1197. 2014-07-10 13:16:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76081, u'Gummi Bears', -1]
  1198. 2014-07-10 13:16:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80328]
  1199. 2014-07-10 13:16:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation', -1]
  1200. 2014-07-10 13:16:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2 THE ANIMATION', -1]
  1201. 2014-07-10 13:16:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: Sylvarant Episode', 1]
  1202. 2014-07-10 13:16:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: Tethe`alla Episode', 2]
  1203. 2014-07-10 13:16:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: Tethe`alla Hen', 2]
  1204. 2014-07-10 13:16:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2 THE ANIMATION \u30c6\u30bb\u30a2\u30e9\u7de8', 2]
  1205. 2014-07-10 13:16:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: Sylvarant Hen', 1]
  1206. 2014-07-10 13:16:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: Sekai Tougou Hen', 3]
  1207. 2014-07-10 13:16:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'Tales of Symphonia The Animation: The United World Episode', 3]
  1208. 2014-07-10 13:16:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80328, u'\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2 THE ANIMATION \u4e16\u754c\u7d71\u5408\u7de8', 3]
  1209. 2014-07-10 13:16:51 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79156]
  1210. 2014-07-10 13:16:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79156, u'Fist of the North Star 2', 2]
  1211. 2014-07-10 13:16:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79156, u'Hokuto no Ken', 1]
  1212. 2014-07-10 13:16:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79156, u'Hokuto no Ken 2', 2]
  1213. 2014-07-10 13:16:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [195721]
  1214. 2014-07-10 13:16:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195721, u'Shinryaku!? Ika Musume', 2]
  1215. 2014-07-10 13:16:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [195721, u'Shinryaku! Ika Musume', 1]
  1216. 2014-07-10 13:16:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259636]
  1217. 2014-07-10 13:16:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259636, u'Muv-Luv Alternative - Total Eclipse', -1]
  1218. 2014-07-10 13:16:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278330]
  1219. 2014-07-10 13:16:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278330, u'Kanojo ga Flag wo Oraretara', 1]
  1220. 2014-07-10 13:16:53 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278331]
  1221. 2014-07-10 13:16:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278331, u'Soredemo Sekai wa Utsukushii', -1]
  1222. 2014-07-10 13:16:53 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [73532]
  1223. 2014-07-10 13:16:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama', -1]
  1224. 2014-07-10 13:16:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis: National Championship Chapter', 8]
  1225. 2014-07-10 13:16:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama: Zenkoku Taikai Hen', 8]
  1226. 2014-07-10 13:16:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama: Zenkoku Taikai Hen - Semifinal', 9]
  1227. 2014-07-10 13:16:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis - National Championship Chapter - Semifinal', 9]
  1228. 2014-07-10 13:16:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama: Zenkoku Taikai Hen - Final', 10]
  1229. 2014-07-10 13:16:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis - National Championship Chapter - Final', 10]
  1230. 2014-07-10 13:16:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama OVA Another Story: Kako to Mirai no Message', 11]
  1231. 2014-07-10 13:16:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis Another Story - Messages from Past and Future', 11]
  1232. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis Another Story', 11]
  1233. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Tennis no Ouji-sama OVA Another Story II: Ano Toki no Bokura', 12]
  1234. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Prince of Tennis Another Story II', 12]
  1235. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'Shin Tennis no Ouji-sama', 13]
  1236. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'New Prince of Tennis', 13]
  1237. 2014-07-10 13:16:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [73532, u'The Prince of Tennis II', 13]
  1238. 2014-07-10 13:16:56 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [474294]
  1239. 2014-07-10 13:16:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [474294, u'Haganai', 1]
  1240. 2014-07-10 13:16:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [474294, u'Haganai Next', 2]
  1241. 2014-07-10 13:16:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [474294, u'\u50d5\u306f\u53cb\u9054\u304c\u5c11\u306a\u3044NEXT', 2]
  1242. 2014-07-10 13:16:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [474294, u'\u50d5\u306f\u53cb\u9054\u304c\u5c11\u306a\u3044', 1]
  1243. 2014-07-10 13:16:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [82807]
  1244. 2014-07-10 13:16:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82807, u'Sekirei', 1]
  1245. 2014-07-10 13:16:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82807, u'Hakuyoku no Seiyaku ~Pure Engagement~', 2]
  1246. 2014-07-10 13:16:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82807, u'Sekirei ~Pure Engagement~', 2]
  1247. 2014-07-10 13:16:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262112]
  1248. 2014-07-10 13:16:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262112, u'Suki-tte Ii na yo', -1]
  1249. 2014-07-10 13:16:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262112, u'Sukitte Iinayo', -1]
  1250. 2014-07-10 13:16:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262112, u'Sukitte Ii na yo', -1]
  1251. 2014-07-10 13:16:58 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79682]
  1252. 2014-07-10 13:16:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79682, u'When They Cry - Higurashi', 1]
  1253. 2014-07-10 13:16:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79682, u'Higurashi no Naku Koro ni Kai', 2]
  1254. 2014-07-10 13:16:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79682, u'Higurashi no Naku Koro ni Rei', 3]
  1255. 2014-07-10 13:16:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79682, u'Higurashi no Naku Koro ni Kira', 4]
  1256. 2014-07-10 13:16:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264047]
  1257. 2014-07-10 13:16:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264047, u'The "Hentai" Prince and the Stony Cat', -1]
  1258. 2014-07-10 13:16:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264047, u'Hentai Ouji to Warawanai Neko', -1]
  1259. 2014-07-10 13:16:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [31044]
  1260. 2014-07-10 13:16:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31044, u'Uchuu Kyoudai', -1]
  1261. 2014-07-10 13:16:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79685]
  1262. 2014-07-10 13:16:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79685, u'Hajime no Ippo: The Fighting - New Challenger', 2]
  1263. 2014-07-10 13:17:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79685, u'Hajime no Ippo: The Fighting! - Rising', 3]
  1264. 2014-07-10 13:17:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79685, u'Hajime no Ippo Rising', 3]
  1265. 2014-07-10 13:17:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79685, u'Hajime no Ippo New Challenger', 2]
  1266. 2014-07-10 13:17:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79685, u'Hajime no Ippo - Rising', 3]
  1267. 2014-07-10 13:17:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [35336]
  1268. 2014-07-10 13:17:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35336, u'Ginga Kikoutai Majestic Prince', -1]
  1269. 2014-07-10 13:17:01 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7 GROUP BY showid
  1270. 2014-07-10 13:17:01 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [88391]
  1271. 2014-07-10 13:17:01 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1272. 2014-07-10 13:17:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [88391, u'Natsu no Arashi!', 1]
  1273. 2014-07-10 13:17:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [88391, u'Natsu no Arashi! Akinai-chuu', 2]
  1274. 2014-07-10 13:17:01 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1275. 2014-07-10 13:17:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [88391, u'Natsu no Arashi Akinai-chuu', 2]
  1276. 2014-07-10 13:17:01 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1277. 2014-07-10 13:17:02 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [87881]
  1278. 2014-07-10 13:17:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'Sengoku Basara', -1]
  1279. 2014-07-10 13:17:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'\u6226\u56fdBASARA', 1]
  1280. 2014-07-10 13:17:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'Sengoku Basara 2', 2]
  1281. 2014-07-10 13:17:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'Sengoku Basara Ni', 2]
  1282. 2014-07-10 13:17:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'Sengoku Basara Two', 2]
  1283. 2014-07-10 13:17:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87881, u'\u6226\u56fdBASARA\u5f10', 2]
  1284. 2014-07-10 13:17:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264523]
  1285. 2014-07-10 13:17:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264523, u'Yama no Susume', 1]
  1286. 2014-07-10 13:17:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80206]
  1287. 2014-07-10 13:17:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80206, u'Disgaea', -1]
  1288. 2014-07-10 13:17:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80206, u'\u9b54\u754c\u6226\u8a18\u30c7\u30a3\u30b9\u30ac\u30a4\u30a2', -1]
  1289. 2014-07-10 13:17:03 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264527]
  1290. 2014-07-10 13:17:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264527, u'Hakkenden: Eight Dogs of the East', -1]
  1291. 2014-07-10 13:17:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264527, u'Hakkenden: Eight Dogs of the East S2', 2]
  1292. 2014-07-10 13:17:04 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264528]
  1293. 2014-07-10 13:17:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264528, u'Zettai Karen Children: The Unlimited - Hyoubu Kyousuke', -1]
  1294. 2014-07-10 13:17:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264528, u'The Unlimited Hyobu Kyosuke', -1]
  1295. 2014-07-10 13:17:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264528, u'Courtesy of Zettai Karen Children: The Unlimited - Hyoubu Kyousuke', -1]
  1296. 2014-07-10 13:17:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [41809]
  1297. 2014-07-10 13:17:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [41809, u'Atelier Escha & Logy - Alchemists of the Dusk Sky', -1]
  1298. 2014-07-10 13:17:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [41809, u'Escha & Logy no Atelier: Tasogare no Sora no Renkinjutsushi', -1]
  1299. 2014-07-10 13:17:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [41809, u'Atelier Escha & Logy: Alchemists of the Dusk Sky', -1]
  1300. 2014-07-10 13:17:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81234]
  1301. 2014-07-10 13:17:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81234, u'Kaiji S2', 2]
  1302. 2014-07-10 13:17:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81234, u'Kaiji', 1]
  1303. 2014-07-10 13:17:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257875]
  1304. 2014-07-10 13:17:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257875, u'Lupin III - Mine Fujiko to Iu Onna', -1]
  1305. 2014-07-10 13:17:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257875, u'Lupin III Fujiko to Iu Onna', -1]
  1306. 2014-07-10 13:17:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257875, u'Lupin the Third - Mine Fujiko to Iu Onna', -1]
  1307. 2014-07-10 13:17:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264533]
  1308. 2014-07-10 13:17:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264533, u'Love Live', -1]
  1309. 2014-07-10 13:17:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264533, u'Love Live! - S2', 2]
  1310. 2014-07-10 13:17:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264533, u'Love Live! - School Idol Project', 1]
  1311. 2014-07-10 13:17:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278329]
  1312. 2014-07-10 13:17:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278329, u'Mahouka', -1]
  1313. 2014-07-10 13:17:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278329, u'Mahouka Koukou no Rettousei', -1]
  1314. 2014-07-10 13:17:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257881]
  1315. 2014-07-10 13:17:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257881, u'Polar Bear Cafe', -1]
  1316. 2014-07-10 13:17:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257881, u'Shirokuma Cafe', -1]
  1317. 2014-07-10 13:17:08 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [82266]
  1318. 2014-07-10 13:17:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'The Tower of Druaga: The Aegis of Uruk', 1]
  1319. 2014-07-10 13:17:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'Druaga no Tou: the Aegis of Uruk', 1]
  1320. 2014-07-10 13:17:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'\u30c9\u30eb\u30a2\u30fc\u30ac\u306e\u5854 \uff5ethe Aegis of URUK\uff5e', 1]
  1321. 2014-07-10 13:17:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'Druaga no Tou: the Sword of Uruk', 2]
  1322. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'The Tower of Druaga: The Sword of Uruk', 2]
  1323. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82266, u'\u30c9\u30eb\u30a2\u30fc\u30ac\u306e\u5854 \uff5ethe Sword of URUK\uff5e', 2]
  1324. 2014-07-10 13:17:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [114921]
  1325. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'A Certain Scientific Railgun', 1]
  1326. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'Toaru Kagaku no Railgun', 1]
  1327. 2014-07-10 13:17:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1328. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'\u3068\u3042\u308b\u79d1\u5b66\u306e\u8d85\u96fb\u78c1\u7832(\u30ec\u30fc\u30eb\u30ac\u30f3)', 1]
  1329. 2014-07-10 13:17:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'A Certain Scientific Railgun S', 2]
  1330. 2014-07-10 13:17:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'Toaru Kagaku no Railgun S', 2]
  1331. 2014-07-10 13:17:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [114921, u'\u3068\u3042\u308b\u79d1\u5b66\u306e\u8d85\u96fb\u78c1\u7832[\u30ec\u30fc\u30eb\u30ac\u30f3]S', 2]
  1332. 2014-07-10 13:17:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [252474]
  1333. 2014-07-10 13:17:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252474, u'Maken-Ki! Battling Venus', -1]
  1334. 2014-07-10 13:17:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252474, u'Maken-ki! Two', 2]
  1335. 2014-07-10 13:17:10 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257765]
  1336. 2014-07-10 13:17:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257765, u"Kuroko's Basketball 2", 2]
  1337. 2014-07-10 13:17:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257765, u'Kuroko no Basket S2', 2]
  1338. 2014-07-10 13:17:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257765, u'Kuroko no Basket 2', 2]
  1339. 2014-07-10 13:17:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257765, u'Kuroko no Basket', 1]
  1340. 2014-07-10 13:17:11 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257765, u"Kuroko's Basketball", 1]
  1341. 2014-07-10 13:17:11 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257888]
  1342. 2014-07-10 13:17:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257888, u'Place to Place', 1]
  1343. 2014-07-10 13:17:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257888, u'Acchi Kocchi ', 1]
  1344. 2014-07-10 13:17:12 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [132961]
  1345. 2014-07-10 13:17:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [132961, u'Baka to Test to Shoukanjuu Ni!', 2]
  1346. 2014-07-10 13:17:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [132961, u'Baka to Test to Shoukanjuu', 1]
  1347. 2014-07-10 13:17:12 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [132961, u'Baka to Test to Shokanju', 1]
  1348. 2014-07-10 13:17:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [132961, u'Baka to Test to Shokanju Ni', 2]
  1349. 2014-07-10 13:17:13 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [199011]
  1350. 2014-07-10 13:17:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [199011, u'Rick der Restaurator', -1]
  1351. 2014-07-10 13:17:13 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [82788]
  1352. 2014-07-10 13:17:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82788, u'Natsume Yuujinchou', 1]
  1353. 2014-07-10 13:17:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82788, u'Zoku Natsume Yuujinchou', 2]
  1354. 2014-07-10 13:17:13 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82788, u'Natsume Yuujinchou San', 3]
  1355. 2014-07-10 13:17:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [82788, u'Natsume Yuujinchou Shi', 4]
  1356. 2014-07-10 13:17:14 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [261862]
  1357. 2014-07-10 13:17:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [261862, u'Regardless of My Adolescent Delusions of Grandeur, I Want a Date!', -1]
  1358. 2014-07-10 13:17:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [261862, u'Chu-2 Byo demo Koi ga Shitai!', -1]
  1359. 2014-07-10 13:17:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [261862, u'Chuunibyou demo Koi ga Shitai! 2', 2]
  1360. 2014-07-10 13:17:14 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [261862, u'Chuunibyou demo Koi ga Shitai! Ren', 2]
  1361. 2014-07-10 13:17:15 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81766]
  1362. 2014-07-10 13:17:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81766, u'To Heart', 1]
  1363. 2014-07-10 13:17:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81766, u'ToHeart', 1]
  1364. 2014-07-10 13:17:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81766, u'To Heart 2', 2]
  1365. 2014-07-10 13:17:15 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81766, u'ToHeart2', 2]
  1366. 2014-07-10 13:17:16 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79719]
  1367. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Zero no Tsukaima: Princess no Rondo', 3]
  1368. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero: Princess of Rondo', 3]
  1369. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero: Roundelay of the Princess', 3]
  1370. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero II', 2]
  1371. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero: Knight of the Two Moons', 2]
  1372. 2014-07-10 13:17:16 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero 2', 2]
  1373. 2014-07-10 13:17:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Zero no Tsukaima: Futatsuki no Kishi', 2]
  1374. 2014-07-10 13:17:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero', 1]
  1375. 2014-07-10 13:17:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'\u30bc\u30ed\u306e\u4f7f\u3044\u9b54', 1]
  1376. 2014-07-10 13:17:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'\u30bc\u30ed\u306e\u4f7f\u3044\u9b54 \uff5e\u53cc\u6708\u306e\u9a0e\u58eb\uff5e', 2]
  1377. 2014-07-10 13:17:17 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'\u30bc\u30ed\u306e\u4f7f\u3044\u9b54\uff5e\u4e09\u7f8e\u59eb(\u30d7\u30ea\u30f3\u30bb\u30c3\u30bb)\u306e\u8f2a\u821e(\u30ed\u30f3\u30c9)\uff5e', 3]
  1378. 2014-07-10 13:17:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Zero no Tsukaima F', 4]
  1379. 2014-07-10 13:17:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'Familiar of Zero F', 4]
  1380. 2014-07-10 13:17:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79719, u'\u30bc\u30ed\u306e\u4f7f\u3044\u9b54F', 4]
  1381. 2014-07-10 13:17:18 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80747]
  1382. 2014-07-10 13:17:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80747, u'The Gadget Show', 1]
  1383. 2014-07-10 13:17:18 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79214]
  1384. 2014-07-10 13:17:18 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79214, u'Mushishi', 1]
  1385. 2014-07-10 13:17:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79214, u'Mushishi Zoku Shou', 2]
  1386. 2014-07-10 13:17:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79214, u'Mushishi S2', 2]
  1387. 2014-07-10 13:17:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259645]
  1388. 2014-07-10 13:17:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259645, u'Kono Naka ni Hitori, Imouto ga Iru!', -1]
  1389. 2014-07-10 13:17:19 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259645, u'Kono Naka ni Hitori Imouto ga Iru', -1]
  1390. 2014-07-10 13:17:19 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264049]
  1391. 2014-07-10 13:17:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264049, u'Kotoura', -1]
  1392. 2014-07-10 13:17:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264049, u'\u7434\u6d66\u3055\u3093', -1]
  1393. 2014-07-10 13:17:20 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264050]
  1394. 2014-07-10 13:17:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264050, u'Senyu', 1]
  1395. 2014-07-10 13:17:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264050, u'Senyuu S2', 2]
  1396. 2014-07-10 13:17:20 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264050, u'Senyu 2', 2]
  1397. 2014-07-10 13:17:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264050, u'Senyuu', 1]
  1398. 2014-07-10 13:17:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264050, u'Senyuu.', 2]
  1399. 2014-07-10 13:17:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264051]
  1400. 2014-07-10 13:17:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264051, u'Sasami Ganbaranai', -1]
  1401. 2014-07-10 13:17:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264051, u'Sasami-san @ Ganbaranai', -1]
  1402. 2014-07-10 13:17:21 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264052]
  1403. 2014-07-10 13:17:21 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264052, u'OreShura', -1]
  1404. 2014-07-10 13:17:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264052, u'Ore no Kanojo to Osananajimi ga Shuraba Sugiru', -1]
  1405. 2014-07-10 13:17:22 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [102261]
  1406. 2014-07-10 13:17:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [102261, u'Bakemonogatari', 1]
  1407. 2014-07-10 13:17:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [102261, u'Nisemonogatari', 2]
  1408. 2014-07-10 13:17:22 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [102261, u'Monogatari Series Second Season', 3]
  1409. 2014-07-10 13:17:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264055]
  1410. 2014-07-10 13:17:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264055, u'GJ-bu 2', 2]
  1411. 2014-07-10 13:17:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264055, u'GJ-bu', 1]
  1412. 2014-07-10 13:17:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [30072]
  1413. 2014-07-10 13:17:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [30072, u'Eve no Jikan', 1]
  1414. 2014-07-10 13:17:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [30072, u'Time of Eve', 1]
  1415. 2014-07-10 13:17:23 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [30072, u'\u30a4\u30f4\u306e\u6642\u9593', 1]
  1416. 2014-07-10 13:17:23 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [172921]
  1417. 2014-07-10 13:17:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [172921, u'Amagami SS', 1]
  1418. 2014-07-10 13:17:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [172921, u'Amagami SS Plus', 2]
  1419. 2014-07-10 13:17:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [172921, u'\u30a2\u30de\u30ac\u30dfSS', 1]
  1420. 2014-07-10 13:17:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [172921, u'\u30a2\u30de\u30ac\u30dfSS+ plus', 2]
  1421. 2014-07-10 13:17:24 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83322]
  1422. 2014-07-10 13:17:24 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'Toaru Majutsu no Index', 1]
  1423. 2014-07-10 13:17:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'\u3068\u3042\u308b\u9b54\u8853\u306e\u7981\u66f8\u76ee\u9332[\u30a4\u30f3\u30c7\u30c3\u30af\u30b9]', 1]
  1424. 2014-07-10 13:17:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'Toaru Majutsu no Index II', 2]
  1425. 2014-07-10 13:17:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'\u3068\u3042\u308b\u9b54\u8853\u306e\u7981\u66f8\u76ee\u9332[\u30a4\u30f3\u30c7\u30c3\u30af\u30b9]II', 2]
  1426. 2014-07-10 13:17:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'To Aru Majutsu no Index', 1]
  1427. 2014-07-10 13:17:25 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'To Aru Majutsu no Index II', 2]
  1428. 2014-07-10 13:17:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83322, u'A Certain Magical Index II', 2]
  1429. 2014-07-10 13:17:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [32124]
  1430. 2014-07-10 13:17:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32124, u'Muv-Luv Alternative - Total Eclipse', -1]
  1431. 2014-07-10 13:17:26 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE (status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) OR (status IN (2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409) AND location != '')) AND season != 0 and episode != 0 AND airdate <= 735424 GROUP BY showid
  1432. 2014-07-10 13:17:26 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [25985]
  1433. 2014-07-10 13:17:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [25985, u'Hotaru no Hikari', 1]
  1434. 2014-07-10 13:17:26 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [25985, u'Hotaru no Hikari 2', 2]
  1435. 2014-07-10 13:17:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [271687]
  1436. 2014-07-10 13:17:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [271687, u"The Pilot's Love Song", 1]
  1437. 2014-07-10 13:17:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [271687, u'Toaru Hikuushi e no Koiuta', 1]
  1438. 2014-07-10 13:17:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [37771]
  1439. 2014-07-10 13:17:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [37771, u'Golden Time', 1]
  1440. 2014-07-10 13:17:27 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83314]
  1441. 2014-07-10 13:17:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83314, u'Shin Koihime Musou: Otome Tairan', 3]
  1442. 2014-07-10 13:17:27 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83314, u'Shin Koihime Musou', 2]
  1443. 2014-07-10 13:17:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83314, u'Shin Koihime Musou - Otome Tairan', 3]
  1444. 2014-07-10 13:17:28 DB TORNADO :: sickbeard.db: SELECT showid, COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7 GROUP BY showid
  1445. 2014-07-10 13:17:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83314, u'Shin Koihime Musou ~Otome Tairan~', 3]
  1446. 2014-07-10 13:17:28 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83996]
  1447. 2014-07-10 13:17:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83996, u'Black Butler II', 2]
  1448. 2014-07-10 13:17:28 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83996, u'Kuroshitsuji', -1]
  1449. 2014-07-10 13:17:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83996, u'Kuroshitsuji II', 2]
  1450. 2014-07-10 13:17:29 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [14573]
  1451. 2014-07-10 13:17:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [14573, u'seul face a la nature', -1]
  1452. 2014-07-10 13:17:29 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [194961]
  1453. 2014-07-10 13:17:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Oreimo', 1]
  1454. 2014-07-10 13:17:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Ore no Imouto ga Konna ni Kawaii Wake ga Nai', 1]
  1455. 2014-07-10 13:17:29 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Ore no Imouto', 1]
  1456. 2014-07-10 13:17:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Ore no Imouto ga Konnani Kawaii Wake ga Nai 2', 2]
  1457. 2014-07-10 13:17:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u"Ore no Imouto ga Konnani Kawaii Wake ga Nai. - My Little Sister Can't Be This Cute.", 2]
  1458. 2014-07-10 13:17:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Oreimo S2', 2]
  1459. 2014-07-10 13:17:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [194961, u'Ore no Imouto ga Konna ni Kawaii Wake ga Nai S2', 2]
  1460. 2014-07-10 13:17:30 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [1426]
  1461. 2014-07-10 13:17:30 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [1426, u'Ginga Eiyuu Densetsu', -1]
  1462. 2014-07-10 13:17:31 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1463. 2014-07-10 13:17:31 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [31043]
  1464. 2014-07-10 13:17:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31043, u'Medaka Box Abnormal', 2]
  1465. 2014-07-10 13:17:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31043, u'Medaka Box', 1]
  1466. 2014-07-10 13:17:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31043, u'Medaka Box 2', 2]
  1467. 2014-07-10 13:17:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [31043, u'Medaka Box S2', 2]
  1468. 2014-07-10 13:17:31 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [32149]
  1469. 2014-07-10 13:17:31 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32149, u'Jinrui wa Suitai Shimashita', -1]
  1470. 2014-07-10 13:17:32 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [15769]
  1471. 2014-07-10 13:17:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [15769, u'93', 7]
  1472. 2014-07-10 13:17:32 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [220571]
  1473. 2014-07-10 13:17:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Is This a Zombie? Of the Dead', 2]
  1474. 2014-07-10 13:17:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desuka?', 1]
  1475. 2014-07-10 13:17:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desuka? Of the Dead', 2]
  1476. 2014-07-10 13:17:32 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desuka Of the Dead', 2]
  1477. 2014-07-10 13:17:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desu ka - Of the Dead', 2]
  1478. 2014-07-10 13:17:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desu ka of the Dead', 2]
  1479. 2014-07-10 13:17:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie Desu kai\xbc\x9f of the Dead', 2]
  1480. 2014-07-10 13:17:33 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u"Kore wa Zombie Desuka' Of the Dead", 2]
  1481. 2014-07-10 13:17:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [220571, u'Kore wa Zombie desu ka', 1]
  1482. 2014-07-10 13:17:34 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278941]
  1483. 2014-07-10 13:17:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278941, u'Seikoku no Dragonar', -1]
  1484. 2014-07-10 13:17:34 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [76703]
  1485. 2014-07-10 13:17:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Indigo League', 1]
  1486. 2014-07-10 13:17:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Adventures on the Orange Islands', 2]
  1487. 2014-07-10 13:17:34 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1488. 2014-07-10 13:17:34 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'The Johto Journeys', 3]
  1489. 2014-07-10 13:17:34 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1490. 2014-07-10 13:17:34 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1491. 2014-07-10 13:17:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Johto League Champions', 4]
  1492. 2014-07-10 13:17:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Master Quest', 5]
  1493. 2014-07-10 13:17:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Advanced', 6]
  1494. 2014-07-10 13:17:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Advanced Challenge', 7]
  1495. 2014-07-10 13:17:35 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Advanced Battle', 8]
  1496. 2014-07-10 13:17:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Battle Frontier', 9]
  1497. 2014-07-10 13:17:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Diamond and Pearl', 10]
  1498. 2014-07-10 13:17:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Diamond and Pearl: Battle Dimension', 11]
  1499. 2014-07-10 13:17:36 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Diamond and Pearl: Galactic Battles', 12]
  1500. 2014-07-10 13:17:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Diamond and Pearl: Sinnoh League Victors', 13]
  1501. 2014-07-10 13:17:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Black & White', 14]
  1502. 2014-07-10 13:17:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Black & White: Rival Destinies', 15]
  1503. 2014-07-10 13:17:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'Black & White: Adventures in Unova', 16]
  1504. 2014-07-10 13:17:37 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [76703, u'XY', 17]
  1505. 2014-07-10 13:17:38 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [276896]
  1506. 2014-07-10 13:17:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [276896, u'Ryuugajou Nanana no Maizoukin', 1]
  1507. 2014-07-10 13:17:38 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [252322]
  1508. 2014-07-10 13:17:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [252322, u'Hunter X Hunter', -1]
  1509. 2014-07-10 13:17:38 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [83363]
  1510. 2014-07-10 13:17:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'Corpse Princess: Aka', 1]
  1511. 2014-07-10 13:17:38 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'\u5c4d\u59eb \u8d6b', 1]
  1512. 2014-07-10 13:17:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'Shikabane Hime: Aka', 1]
  1513. 2014-07-10 13:17:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'Corpse Princess: Kuro', 2]
  1514. 2014-07-10 13:17:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'Shikabane Hime: Kuro', 2]
  1515. 2014-07-10 13:17:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [83363, u'\u5c4d\u59eb \u7384', 2]
  1516. 2014-07-10 13:17:39 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [29510]
  1517. 2014-07-10 13:17:39 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u'Boku wa Tomodachi ga Sukunai', -1]
  1518. 2014-07-10 13:17:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u'Boku ha Tomodachi ga Sukunai', -1]
  1519. 2014-07-10 13:17:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u"I Don't Have Many Friends", -1]
  1520. 2014-07-10 13:17:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u'Boku wa Tomodachi ga Sukunai NEXT', 2]
  1521. 2014-07-10 13:17:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u'Haganai NEXT', 2]
  1522. 2014-07-10 13:17:40 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29510, u'Boku Ha Tomodachi ga Sukunai NEXT', 2]
  1523. 2014-07-10 13:17:41 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [23281]
  1524. 2014-07-10 13:17:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [23281, u'Die Drei vom Pfandhaus', -1]
  1525. 2014-07-10 13:17:41 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80808]
  1526. 2014-07-10 13:17:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80808, u'Moyashimon', 1]
  1527. 2014-07-10 13:17:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80808, u'Moyashimon Returns', 2]
  1528. 2014-07-10 13:17:41 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [171591]
  1529. 2014-07-10 13:17:41 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171591, u'High School of the Dead', 1]
  1530. 2014-07-10 13:17:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171591, u'\u5b66\u5712\u9ed9\u793a\u9332 HIGH SCHOOL OF THE DEAD', 1]
  1531. 2014-07-10 13:17:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [171591, u'Gakuen Mokushiroku: High School of the Dead', 1]
  1532. 2014-07-10 13:17:42 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [34143]
  1533. 2014-07-10 13:17:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [34143, u'Hakkenden: Eight Dogs of the East', -1]
  1534. 2014-07-10 13:17:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [34143, u'Hakkenden: Eight Dogs of the East S2', 2]
  1535. 2014-07-10 13:17:42 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275613]
  1536. 2014-07-10 13:17:42 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275613, u'Hoozuki no Reitetsu', -1]
  1537. 2014-07-10 13:17:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275613, u'Hozuki no Reitetsu', -1]
  1538. 2014-07-10 13:17:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275613, u'\u9b3c\u706f\u306e\u51b7\u5fb9', -1]
  1539. 2014-07-10 13:17:43 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [259652]
  1540. 2014-07-10 13:17:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [259652, u'La storia della Arcana Famiglia', -1]
  1541. 2014-07-10 13:17:43 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79283]
  1542. 2014-07-10 13:17:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHOLiC: Kei', 2]
  1543. 2014-07-10 13:17:43 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHolic - Die Serie', 1]
  1544. 2014-07-10 13:17:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHOLiC', 1]
  1545. 2014-07-10 13:17:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHOLiC\u25c6\u7d99', 2]
  1546. 2014-07-10 13:17:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHolic - La s\xe9rie', 1]
  1547. 2014-07-10 13:17:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHOLiC TV', 1]
  1548. 2014-07-10 13:17:44 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79283, u'xxxHOLiC 2', 2]
  1549. 2014-07-10 13:17:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [29109]
  1550. 2014-07-10 13:17:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29109, u'Hellsing', 1]
  1551. 2014-07-10 13:17:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257517]
  1552. 2014-07-10 13:17:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257517, u'Shining Hearts - Shiawase no Pan', -1]
  1553. 2014-07-10 13:17:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257517, u'Shining Hearts - Bread of Happiness', -1]
  1554. 2014-07-10 13:17:45 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267705]
  1555. 2014-07-10 13:17:45 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267705, u'Hyperdimension Neptunia - The Animation', -1]
  1556. 2014-07-10 13:17:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267705, u'\u8d85\u6b21\u5143\u30b2\u30a4\u30e0 \u30cd\u30d7\u30c6\u30e5\u30fc\u30cc THE ANIMATION', -1]
  1557. 2014-07-10 13:17:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267705, u'Choujigen Game Neptune The Animation', -1]
  1558. 2014-07-10 13:17:46 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80830]
  1559. 2014-07-10 13:17:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80830, u'MAR', -1]
  1560. 2014-07-10 13:17:46 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80830, u'Marchen Awakens Romance', -1]
  1561. 2014-07-10 13:17:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80830, u'\u30e1\u30eb', -1]
  1562. 2014-07-10 13:17:47 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278976]
  1563. 2014-07-10 13:17:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278976, u'Mangaka-san to Assistant-san to', -1]
  1564. 2014-07-10 13:17:47 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [87491]
  1565. 2014-07-10 13:17:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u"Queen's Blade", -1]
  1566. 2014-07-10 13:17:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade', 1]
  1567. 2014-07-10 13:17:47 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade Rurou no Senshi', 1]
  1568. 2014-07-10 13:17:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade The Exiled Virgin', 1]
  1569. 2014-07-10 13:17:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade Wandering Warrior', 1]
  1570. 2014-07-10 13:17:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade Gyokuza o Tsugu Mono', 2]
  1571. 2014-07-10 13:17:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade 2 The Evil Eye', 2]
  1572. 2014-07-10 13:17:48 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u"Queen's Blade S2", 2]
  1573. 2014-07-10 13:17:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u"Queen's Blade II", 2]
  1574. 2014-07-10 13:17:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u'Queen`s Blade The Successor to the Throne', 2]
  1575. 2014-07-10 13:17:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87491, u"Queen's Blade Rebellion", 3]
  1576. 2014-07-10 13:17:49 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [269681]
  1577. 2014-07-10 13:17:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269681, u"Gen'ei o Kakeru Taiyou - Il Sole Penetra le Illusioni", -1]
  1578. 2014-07-10 13:17:49 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269681, u"Gen'ei wo Kakeru Taiyou", -1]
  1579. 2014-07-10 13:17:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [269681, u"Gen'ei wo Kakeru Taiyou - Il Sole Penetra le Illusioni", -1]
  1580. 2014-07-10 13:17:50 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79818]
  1581. 2014-07-10 13:17:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79818, u"Charlie Brooker's Screenwipe", -1]
  1582. 2014-07-10 13:17:50 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1583. 2014-07-10 13:17:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79818, u"Charlie Brooker's Screen Wipe", -1]
  1584. 2014-07-10 13:17:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79818, u'Screenwipe', -1]
  1585. 2014-07-10 13:17:50 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [111051]
  1586. 2014-07-10 13:17:50 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [111051, u'Die Drei vom Pfandhaus', -1]
  1587. 2014-07-10 13:17:51 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262092]
  1588. 2014-07-10 13:17:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262092, u'Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne', -1]
  1589. 2014-07-10 13:17:51 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262093]
  1590. 2014-07-10 13:17:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262093, u'C\xd8DE\uff1aBREAKER', -1]
  1591. 2014-07-10 13:17:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262093, u'Code Breaker', -1]
  1592. 2014-07-10 13:17:51 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262093, u'C\xc3\x98DEi\xbc\x9aBREAKER', -1]
  1593. 2014-07-10 13:17:51 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262094]
  1594. 2014-07-10 13:17:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262094, u'Magi S2', 2]
  1595. 2014-07-10 13:17:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262094, u'Magi', 1]
  1596. 2014-07-10 13:17:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79824]
  1597. 2014-07-10 13:17:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79824, u'Naruto Shippuuden', -1]
  1598. 2014-07-10 13:17:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79824, u'NARUTO \u75be\u98a8\u4f1d', -1]
  1599. 2014-07-10 13:17:52 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [32721]
  1600. 2014-07-10 13:17:52 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32721, u'Regardless of My Adolescent Delusions of Grandeur, I Want a Date!', -1]
  1601. 2014-07-10 13:17:53 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1602. 2014-07-10 13:17:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32721, u'Chu-2 Byo demo Koi ga Shitai!', -1]
  1603. 2014-07-10 13:17:53 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1604. 2014-07-10 13:17:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32721, u'Chuunibyou demo Koi ga Shitai! 2', 2]
  1605. 2014-07-10 13:17:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [32721, u'Chuunibyou demo Koi ga Shitai! Ren', 2]
  1606. 2014-07-10 13:17:53 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [71634]
  1607. 2014-07-10 13:17:53 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [71634, u'\u9b54\u6cd5\u9a0e\u58eb[\u30de\u30b8\u30c3\u30af\u30ca\u30a4\u30c8]\u30ec\u30a4\u30a2\u30fc\u30b9', -1]
  1608. 2014-07-10 13:17:53 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [254931]
  1609. 2014-07-10 13:17:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254931, u'Mobile Suit Gundam Seed Remaster', 1]
  1610. 2014-07-10 13:17:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254931, u'Mobile Suit Gundam Seed HD Remaster', 1]
  1611. 2014-07-10 13:17:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [254931, u'Mobile Suit Gundam Seed (2012)', 1]
  1612. 2014-07-10 13:17:54 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [264663]
  1613. 2014-07-10 13:17:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264663, u'Date A Live S2', 2]
  1614. 2014-07-10 13:17:54 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [264663, u'Date A Live II', 2]
  1615. 2014-07-10 13:17:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262106]
  1616. 2014-07-10 13:17:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262106, u'Kami-sama Hajimemashita', -1]
  1617. 2014-07-10 13:17:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262106, u'Kamisama Kiss', -1]
  1618. 2014-07-10 13:17:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262107]
  1619. 2014-07-10 13:17:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262107, u'Tonari no Kaibutsu-kun', -1]
  1620. 2014-07-10 13:17:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262107, u'Tonari no Kaibutsu', -1]
  1621. 2014-07-10 13:17:55 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262109]
  1622. 2014-07-10 13:17:55 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262109, u'Zetsuen no Tempest: The Civilization Blaster', -1]
  1623. 2014-07-10 13:17:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262109, u'Zetsuen no Tempest', -1]
  1624. 2014-07-10 13:17:56 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79839]
  1625. 2014-07-10 13:17:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79839, u'Aria the Natural', 2]
  1626. 2014-07-10 13:17:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79839, u'Aria the Animation', 1]
  1627. 2014-07-10 13:17:56 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79839, u'Aria the Origination', 3]
  1628. 2014-07-10 13:17:56 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [265530]
  1629. 2014-07-10 13:17:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [265530, u'Ishida to Asakura', -1]
  1630. 2014-07-10 13:17:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262113]
  1631. 2014-07-10 13:17:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262113, u'Ixion Saga DT', -1]
  1632. 2014-07-10 13:17:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [262114]
  1633. 2014-07-10 13:17:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [262114, u'Sakurasou no Pet na Kanojo', -1]
  1634. 2014-07-10 13:17:57 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [79099]
  1635. 2014-07-10 13:17:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//SIGN', 1]
  1636. 2014-07-10 13:17:57 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//Legend of the Twilight', 2]
  1637. 2014-07-10 13:17:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//Roots', 3]
  1638. 2014-07-10 13:17:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'dot hack', -1]
  1639. 2014-07-10 13:17:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//Legend of the Twilight Bracelet', 2]
  1640. 2014-07-10 13:17:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//\u9ec4\u660f\u306e\u8155\u8f2a\u4f1d\u8aac', 2]
  1641. 2014-07-10 13:17:58 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [79099, u'.hack//DUSK', 2]
  1642. 2014-07-10 13:17:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [1187]
  1643. 2014-07-10 13:17:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [1187, u'Tatchi', -1]
  1644. 2014-07-10 13:17:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [1187, u'\u30bf\u30c3\u30c1', -1]
  1645. 2014-07-10 13:17:59 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [81831]
  1646. 2014-07-10 13:17:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'To Love-Ru', -1]
  1647. 2014-07-10 13:17:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'Motto To Love-Ru', 2]
  1648. 2014-07-10 13:17:59 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'Motto To Love-Ru Trouble', 2]
  1649. 2014-07-10 13:18:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'To Love-Ru Darkness', 3]
  1650. 2014-07-10 13:18:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'To Love Ru', 1]
  1651. 2014-07-10 13:18:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [81831, u'To Love-Ru Trouble Darkness', 3]
  1652. 2014-07-10 13:18:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [278817]
  1653. 2014-07-10 13:18:00 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [278817, u'Blade and Soul', -1]
  1654. 2014-07-10 13:18:00 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [267246]
  1655. 2014-07-10 13:18:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267246, u'Gin no Saji', 1]
  1656. 2014-07-10 13:18:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267246, u'Gin no Saji S2', 2]
  1657. 2014-07-10 13:18:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [267246, u'Silver Spoon S2', 2]
  1658. 2014-07-10 13:18:01 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [29693]
  1659. 2014-07-10 13:18:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [29693, u'Hunter X Hunter', -1]
  1660. 2014-07-10 13:18:01 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [18378]
  1661. 2014-07-10 13:18:01 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'Code Geass: Lelouch of the Rebellion R2', 2]
  1662. 2014-07-10 13:18:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'Code Geass: Lelouch of the Rebellion', 1]
  1663. 2014-07-10 13:18:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5', 1]
  1664. 2014-07-10 13:18:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5 R2', 2]
  1665. 2014-07-10 13:18:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'Code Geass', -1]
  1666. 2014-07-10 13:18:02 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [18378, u'Code Geass: Lelouch of the Rebellion', -1]
  1667. 2014-07-10 13:18:02 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257521]
  1668. 2014-07-10 13:18:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyaruko-san W', 2]
  1669. 2014-07-10 13:18:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyarlko W', 2]
  1670. 2014-07-10 13:18:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyaruko-san', 1]
  1671. 2014-07-10 13:18:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyarlko', 1]
  1672. 2014-07-10 13:18:03 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyarlko-san W', 2]
  1673. 2014-07-10 13:18:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257521, u'Haiyore! Nyarlko-san', 1]
  1674. 2014-07-10 13:18:04 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [257522]
  1675. 2014-07-10 13:18:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257522, u'Medaka Box Abnormal', 2]
  1676. 2014-07-10 13:18:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257522, u'Medaka Box', 1]
  1677. 2014-07-10 13:18:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257522, u'Medaka Box 2', 2]
  1678. 2014-07-10 13:18:04 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [257522, u'Medaka Box S2', 2]
  1679. 2014-07-10 13:18:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80044]
  1680. 2014-07-10 13:18:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80044, u'Seirei no Moribito', -1]
  1681. 2014-07-10 13:18:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [35317]
  1682. 2014-07-10 13:18:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35317, u'Yahari Ore no Seishun Love Come wa Machigatteiru.', -1]
  1683. 2014-07-10 13:18:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35317, u'Yahari Ore no Seishun Love Come wa Machigatteiru', -1]
  1684. 2014-07-10 13:18:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [35317, u'Yahari Ore no Seishun Love Comedy wa Machigatteiru - My Teenage RomCom SNAFU', -1]
  1685. 2014-07-10 13:18:05 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [275625]
  1686. 2014-07-10 13:18:05 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275625, u'Onee-chan ga Kita', -1]
  1687. 2014-07-10 13:18:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275625, u'Oneechan ga Kita', -1]
  1688. 2014-07-10 13:18:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [275625, u'\u304a\u59c9\u3061\u3083\u3093\u304c\u6765\u305f', -1]
  1689. 2014-07-10 13:18:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [87501]
  1690. 2014-07-10 13:18:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87501, u'K-ON!', 1]
  1691. 2014-07-10 13:18:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [87501, u'K-ON!!', 2]
  1692. 2014-07-10 13:18:06 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [219131]
  1693. 2014-07-10 13:18:06 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219131, u'IS: Infinite Stratos 2', 2]
  1694. 2014-07-10 13:18:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219131, u'Infinite Stratos 2', 2]
  1695. 2014-07-10 13:18:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219131, u'Infinite Stratos IS', 1]
  1696. 2014-07-10 13:18:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [219131, u'Infinite Stratos', -1]
  1697. 2014-07-10 13:18:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [268284]
  1698. 2014-07-10 13:18:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268284, u'Ginga Kikoutai Majestic Prince', -1]
  1699. 2014-07-10 13:18:07 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [80554]
  1700. 2014-07-10 13:18:07 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u'Hayate no Gotoku!!', 2]
  1701. 2014-07-10 13:18:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u'Hayate no Gotoku!', 1]
  1702. 2014-07-10 13:18:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u'Hayate no Gotoku - 2nd Season', 2]
  1703. 2014-07-10 13:18:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u'Hayate No Gotoku!! 2nd Season', 2]
  1704. 2014-07-10 13:18:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u"Hayate no Gotoku! - Can't Take My Eyes Off You", 3]
  1705. 2014-07-10 13:18:08 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u"Hayate the Combat Butler! - Can't Take My Eyes Off You", 3]
  1706. 2014-07-10 13:18:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [80554, u'Hayate no Gotoku! Cuties', 4]
  1707. 2014-07-10 13:18:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [268286]
  1708. 2014-07-10 13:18:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [268286, u'Zettai Bouei Leviathan', -1]
  1709. 2014-07-10 13:18:09 DB MAIN :: cache.db: SELECT * FROM scene_exceptions WHERE indexer_id = ? with args [118101]
  1710. 2014-07-10 13:18:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [118101, u'Sora no Otoshimono Dai San-ki', 3]
  1711. 2014-07-10 13:18:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1712. 2014-07-10 13:18:09 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [118101, u'Sora no Otoshimono Forte', 2]
  1713. 2014-07-10 13:18:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [118101, u'Heaven`s Lost Property - Forte', 2]
  1714. 2014-07-10 13:18:10 DB MAIN :: cache.db: INSERT INTO scene_exceptions (indexer_id, show_name, season) VALUES (?,?,?) with args [118101, u'Heaven`s Lost Property', 1]
  1715. 2014-07-10 13:18:10 INFO MAIN :: Updated scene exceptions
  1716. 2014-07-10 13:18:10 INFO MAIN :: Building internal name cache
  1717. 2014-07-10 13:18:10 DB MAIN :: cache.db: SELECT * FROM scene_names
  1718. 2014-07-10 13:18:10 DEBUG MAIN :: Internal name cache set to: {}
  1719. 2014-07-10 13:18:11 INFO MAIN :: Updating timezone info with new one: zoneinfo-2014e.tar.gz
  1720. 2014-07-10 13:18:11 DB MAIN :: cache.db: SELECT * FROM network_timezones
  1721. 2014-07-10 13:18:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1722. 2014-07-10 13:18:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1723. 2014-07-10 13:19:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1724. 2014-07-10 13:19:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1725. 2014-07-10 13:19:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1726. 2014-07-10 13:19:58 DEBUG MAIN :: Transaction with 741 queries executed
  1727. 2014-07-10 13:19:58 DB MAIN :: cache.db: SELECT * FROM network_timezones
  1728. 2014-07-10 13:20:13 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1729. 2014-07-10 13:20:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1730. 2014-07-10 13:20:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1731. 2014-07-10 13:21:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1732. 2014-07-10 13:21:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1733. 2014-07-10 13:21:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1734. 2014-07-10 13:22:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1735. 2014-07-10 13:22:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1736. 2014-07-10 13:22:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1737. 2014-07-10 13:22:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1738. 2014-07-10 13:23:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1739. 2014-07-10 13:23:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1740. 2014-07-10 13:23:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1741. 2014-07-10 13:24:03 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1742. 2014-07-10 13:24:03 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1743. 2014-07-10 13:24:06 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1744. 2014-07-10 13:24:06 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1745. 2014-07-10 13:24:09 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1746. 2014-07-10 13:24:20 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1747. 2014-07-10 13:24:20 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1748. 2014-07-10 13:24:29 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1749. 2014-07-10 13:24:49 WARNING TORNADO :: API :: 174.66.185.221 - SB API Disabled. ACCESS DENIED
  1750. 2014-07-10 13:24:53 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,6) AND season != 0 and episode != 0 AND airdate <= 735424
  1751. 2014-07-10 13:24:53 INFO EVENT-QUEUE :: Aborting all threads
  1752. 2014-07-10 13:24:53 INFO EVENT-QUEUE :: Waiting for the EVENTS thread to exit
  1753. 2014-07-10 13:24:53 INFO EVENT-QUEUE :: Waiting for the DAILYSEARCH thread to exit
  1754. 2014-07-10 13:24:53 DB TORNADO :: sickbeard.db: SELECT COUNT(*) FROM tv_episodes WHERE season != 0 and episode != 0 AND (airdate != 1 OR status IN (4,3276804,204,404,104,804,12804,25604,1604,3204,6404,2,3276802,202,402,102,802,12802,25602,1602,3202,6402,9,3276809,209,409,109,809,12809,25609,1609,3209,6409,6)) AND airdate <= 735424 AND status != 7
  1755. 2014-07-10 13:24:54 INFO EVENT-QUEUE :: Waiting for the BACKLOG thread to exit
  1756. 2014-07-10 13:24:54 INFO EVENT-QUEUE :: Waiting for the SHOWUPDATER thread to exit
  1757. 2014-07-10 13:24:55 INFO EVENT-QUEUE :: Waiting for the VERSIONCHECKER thread to exit
  1758. 2014-07-10 13:24:55 INFO EVENT-QUEUE :: Waiting for the SHOWQUEUE thread to exit
  1759. 2014-07-10 13:24:55 INFO EVENT-QUEUE :: Waiting for the SEARCHQUEUE thread to exit
  1760. 2014-07-10 13:24:57 INFO EVENT-QUEUE :: Waiting for the POSTPROCESSER thread to exit
  1761. 2014-07-10 13:24:58 INFO EVENT-QUEUE :: Waiting for the TRAKTCHECKER thread to exit
  1762. 2014-07-10 13:24:59 INFO EVENT-QUEUE :: Waiting for the PROPERFINDER thread to exit
  1763. 2014-07-10 13:25:00 INFO EVENT-QUEUE :: Waiting for the SUBTITLESFINDER thread to exit
  1764. 2014-07-10 13:25:00 INFO EVENT-QUEUE :: Saving all shows to the database
  1765. 2014-07-10 13:25:00 INFO EVENT-QUEUE :: Saving config file to disk
  1766. 2014-07-10 13:25:00 INFO EVENT-QUEUE :: Restarting SickRage with ['/usr/bin/python2', '/media/sickbeard/SickBeard.py', '--nolaunch']
  1767. 2014-07-10 13:25:00 INFO MAIN :: Checking database structure...
  1768. 2014-07-10 13:25:00 DEBUG MAIN :: Checking Initial Schema database upgrade
  1769. 2014-07-10 13:25:00 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1770. 2014-07-10 13:25:00 DEBUG MAIN :: InitialSchema upgrade not required
  1771. 2014-07-10 13:25:00 DEBUG MAIN :: Checking Add Size And Scene Name Fields database upgrade
  1772. 2014-07-10 13:25:00 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1773. 2014-07-10 13:25:00 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1774. 2014-07-10 13:25:00 DEBUG MAIN :: AddSizeAndSceneNameFields upgrade not required
  1775. 2014-07-10 13:25:00 DEBUG MAIN :: Checking Rename Season Folders database upgrade
  1776. 2014-07-10 13:25:00 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1777. 2014-07-10 13:25:00 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1778. 2014-07-10 13:25:01 DEBUG MAIN :: RenameSeasonFolders upgrade not required
  1779. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add1080p And Raw Qualities database upgrade
  1780. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1781. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1782. 2014-07-10 13:25:01 DEBUG MAIN :: Add1080pAndRawHDQualities upgrade not required
  1783. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Showid Tvdbid Index database upgrade
  1784. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1785. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1786. 2014-07-10 13:25:01 DEBUG MAIN :: AddShowidTvdbidIndex upgrade not required
  1787. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Last Update database upgrade
  1788. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1789. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1790. 2014-07-10 13:25:01 DEBUG MAIN :: AddLastUpdateTVDB upgrade not required
  1791. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Increase To15 database upgrade
  1792. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1793. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1794. 2014-07-10 13:25:01 DEBUG MAIN :: AddDBIncreaseTo15 upgrade not required
  1795. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Db Info database upgrade
  1796. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1797. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1798. 2014-07-10 13:25:01 DEBUG MAIN :: AddIMDbInfo upgrade not required
  1799. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Proper Naming Support database upgrade
  1800. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1801. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1802. 2014-07-10 13:25:01 DEBUG MAIN :: AddProperNamingSupport upgrade not required
  1803. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Email Subscription Table database upgrade
  1804. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1805. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1806. 2014-07-10 13:25:01 DEBUG MAIN :: AddEmailSubscriptionTable upgrade not required
  1807. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Proper Search database upgrade
  1808. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1809. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1810. 2014-07-10 13:25:01 DEBUG MAIN :: AddProperSearch upgrade not required
  1811. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Dvd Order Option database upgrade
  1812. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1813. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1814. 2014-07-10 13:25:01 DEBUG MAIN :: AddDvdOrderOption upgrade not required
  1815. 2014-07-10 13:25:01 DEBUG MAIN :: Checking Add Subtitles Support database upgrade
  1816. 2014-07-10 13:25:01 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1817. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1818. 2014-07-10 13:25:02 DEBUG MAIN :: AddSubtitlesSupport upgrade not required
  1819. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Convert Shows To Indexer Scheme database upgrade
  1820. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1821. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1822. 2014-07-10 13:25:02 DEBUG MAIN :: ConvertTVShowsToIndexerScheme upgrade not required
  1823. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Convert Episodes To Indexer Scheme database upgrade
  1824. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1825. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1826. 2014-07-10 13:25:02 DEBUG MAIN :: ConvertTVEpisodesToIndexerScheme upgrade not required
  1827. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  1828. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1829. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1830. 2014-07-10 13:25:02 DEBUG MAIN :: ConvertIMDBInfoToIndexerScheme upgrade not required
  1831. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  1832. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1833. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1834. 2014-07-10 13:25:02 DEBUG MAIN :: ConvertInfoToIndexerScheme upgrade not required
  1835. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Add Archive First Match Option database upgrade
  1836. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1837. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1838. 2014-07-10 13:25:02 DEBUG MAIN :: AddArchiveFirstMatchOption upgrade not required
  1839. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Add Scene Numbering database upgrade
  1840. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1841. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1842. 2014-07-10 13:25:02 DEBUG MAIN :: AddSceneNumbering upgrade not required
  1843. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Convert Indexer To Integer database upgrade
  1844. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1845. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1846. 2014-07-10 13:25:02 DEBUG MAIN :: ConvertIndexerToInteger upgrade not required
  1847. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Add Require And Ignore Words database upgrade
  1848. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1849. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1850. 2014-07-10 13:25:02 DEBUG MAIN :: AddRequireAndIgnoreWords upgrade not required
  1851. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Add Sports Option database upgrade
  1852. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1853. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1854. 2014-07-10 13:25:02 DEBUG MAIN :: AddSportsOption upgrade not required
  1855. 2014-07-10 13:25:02 DEBUG MAIN :: Checking Add Scene Numbering To Tv Episodes database upgrade
  1856. 2014-07-10 13:25:02 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1857. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1858. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneNumberingToTvEpisodes upgrade not required
  1859. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Anime Show database upgrade
  1860. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1861. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1862. 2014-07-10 13:25:03 DEBUG MAIN :: AddAnimeTVShow upgrade not required
  1863. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Absolute Numbering database upgrade
  1864. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1865. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1866. 2014-07-10 13:25:03 DEBUG MAIN :: AddAbsoluteNumbering upgrade not required
  1867. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  1868. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1869. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1870. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  1871. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Anime Blacklist Whitelist database upgrade
  1872. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1873. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1874. 2014-07-10 13:25:03 DEBUG MAIN :: AddAnimeBlacklistWhitelist upgrade not required
  1875. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  1876. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1877. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1878. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  1879. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Xem Refresh database upgrade
  1880. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1881. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1882. 2014-07-10 13:25:03 DEBUG MAIN :: AddXemRefresh upgrade not required
  1883. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Scene To Tv Shows database upgrade
  1884. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  1885. 2014-07-10 13:25:03 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  1886. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneToTvShows upgrade not required
  1887. 2014-07-10 13:25:03 INFO MAIN :: Checking database structure...
  1888. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Initial Schema database upgrade
  1889. 2014-07-10 13:25:03 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastUpdate',)
  1890. 2014-07-10 13:25:03 DEBUG MAIN :: InitialSchema upgrade not required
  1891. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Scene Exceptions database upgrade
  1892. 2014-07-10 13:25:03 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions',)
  1893. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneExceptions upgrade not required
  1894. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Scene Name Cache database upgrade
  1895. 2014-07-10 13:25:03 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_names',)
  1896. 2014-07-10 13:25:03 DEBUG MAIN :: AddSceneNameCache upgrade not required
  1897. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Network Timezones database upgrade
  1898. 2014-07-10 13:25:03 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('network_timezones',)
  1899. 2014-07-10 13:25:03 DEBUG MAIN :: AddNetworkTimezones upgrade not required
  1900. 2014-07-10 13:25:03 DEBUG MAIN :: Checking Add Last Search database upgrade
  1901. 2014-07-10 13:25:03 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastSearch',)
  1902. 2014-07-10 13:25:04 DEBUG MAIN :: AddLastSearch upgrade not required
  1903. 2014-07-10 13:25:04 DEBUG MAIN :: Checking Add Scene Exceptions Seasons database upgrade
  1904. 2014-07-10 13:25:04 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  1905. 2014-07-10 13:25:04 DEBUG MAIN :: AddSceneExceptionsSeasons upgrade not required
  1906. 2014-07-10 13:25:04 DEBUG MAIN :: Checking Add Scene Exceptions Custom database upgrade
  1907. 2014-07-10 13:25:04 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  1908. 2014-07-10 13:25:04 DEBUG MAIN :: AddSceneExceptionsCustom upgrade not required
  1909. 2014-07-10 13:25:04 DEBUG MAIN :: Checking Add Scene Exceptions Refresh database upgrade
  1910. 2014-07-10 13:25:04 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions_refresh',)
  1911. 2014-07-10 13:25:04 DEBUG MAIN :: AddSceneExceptionsRefresh upgrade not required
  1912. 2014-07-10 13:25:04 INFO MAIN :: Checking database structure...
  1913. 2014-07-10 13:25:04 DEBUG MAIN :: Checking Initial Schema database upgrade
  1914. 2014-07-10 13:25:04 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('failed',)
  1915. 2014-07-10 13:25:04 DEBUG MAIN :: InitialSchema upgrade not required
  1916. 2014-07-10 13:25:04 DEBUG MAIN :: Checking Size And Provider database upgrade
  1917. 2014-07-10 13:25:04 DB MAIN :: failed.db: PRAGMA table_info(failed)
  1918. 2014-07-10 13:25:04 DB MAIN :: failed.db: PRAGMA table_info(failed)
  1919. 2014-07-10 13:25:04 DEBUG MAIN :: SizeAndProvider upgrade not required
  1920. 2014-07-10 13:25:04 DEBUG MAIN :: Checking History database upgrade
  1921. 2014-07-10 13:25:04 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('history',)
  1922. 2014-07-10 13:25:04 DEBUG MAIN :: History upgrade not required
  1923. 2014-07-10 13:25:04 DEBUG MAIN :: Checking History Status database upgrade
  1924. 2014-07-10 13:25:04 DB MAIN :: failed.db: PRAGMA table_info(history)
  1925. 2014-07-10 13:25:04 DEBUG MAIN :: HistoryStatus upgrade not required
  1926. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_indexer_id')
  1927. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_tv_episodes_showid_airdate')
  1928. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_showid')
  1929. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_status')
  1930. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_air')
  1931. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_sta_air')
  1932. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: SELECT show_id, indexer_id, COUNT(indexer_id) as count FROM tv_shows GROUP BY indexer_id HAVING count > 1
  1933. 2014-07-10 13:25:04 INFO MAIN :: No duplicate show, check passed
  1934. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: SELECT showid, season, episode, COUNT(showid) as count FROM tv_episodes GROUP BY showid, season, episode HAVING count > 1
  1935. 2014-07-10 13:25:04 INFO MAIN :: No duplicate episode, check passed
  1936. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: SELECT episode_id, showid, tv_shows.indexer_id FROM tv_episodes LEFT JOIN tv_shows ON tv_episodes.showid=tv_shows.indexer_id WHERE tv_shows.indexer_id is NULL
  1937. 2014-07-10 13:25:04 INFO MAIN :: No orphan episodes, check passed
  1938. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: SELECT episode_id, showid FROM tv_episodes WHERE airdate > ? AND status in (?,?) with args [735424, 5, 3]
  1939. 2014-07-10 13:25:04 INFO MAIN :: No UNAIRED episodes, check passed
  1940. 2014-07-10 13:25:04 DEBUG MAIN :: config_version -> 5
  1941. 2014-07-10 13:25:04 DEBUG MAIN :: Checking if we can use git commands: git version
  1942. 2014-07-10 13:25:04 DEBUG MAIN :: Executing git version with your shell in /media/sickbeard
  1943. 2014-07-10 13:25:04 DEBUG MAIN :: git output: git version 1.7.10.4
  1944. 2014-07-10 13:25:04 DEBUG MAIN :: git version : returned successful
  1945. 2014-07-10 13:25:04 DEBUG MAIN :: Using: git
  1946. 2014-07-10 13:25:04 DEBUG MAIN :: Executing git symbolic-ref -q HEAD with your shell in /media/sickbeard
  1947. 2014-07-10 13:25:04 DEBUG MAIN :: git output: refs/heads/dev
  1948. 2014-07-10 13:25:04 DEBUG MAIN :: git symbolic-ref -q HEAD : returned successful
  1949. 2014-07-10 13:25:04 DEBUG MAIN :: Retrieving the last check time from the DB
  1950. 2014-07-10 13:25:04 DB MAIN :: sickbeard.db: SELECT * FROM info
  1951. 2014-07-10 13:25:05 DEBUG MAIN :: nyaatorrents -> 0
  1952. 2014-07-10 13:25:05 DEBUG MAIN :: nyaatorrents_ratio ->
  1953. 2014-07-10 13:25:05 DEBUG MAIN :: nyaatorrents_search_mode -> eponly
  1954. 2014-07-10 13:25:05 DEBUG MAIN :: nyaatorrents_search_fallback -> 0
  1955. 2014-07-10 13:25:05 DEBUG MAIN :: nyaatorrents_backlog_only -> 0
  1956. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents -> 0
  1957. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_username ->
  1958. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_password -> ******
  1959. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_ratio ->
  1960. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_minseed -> 0
  1961. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_minleech -> 0
  1962. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_search_mode -> eponly
  1963. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_search_fallback -> 0
  1964. 2014-07-10 13:25:05 DEBUG MAIN :: hdtorrents_backlog_only -> 0
  1965. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd -> 0
  1966. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_username ->
  1967. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_password -> ******
  1968. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_ratio ->
  1969. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_minseed -> 0
  1970. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_minleech -> 0
  1971. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_freeleech -> 0
  1972. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_search_mode -> eponly
  1973. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_search_fallback -> 0
  1974. 2014-07-10 13:25:05 DEBUG MAIN :: speedcd_backlog_only -> 0
  1975. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents -> 0
  1976. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_username ->
  1977. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_password -> ******
  1978. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_ratio ->
  1979. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_freeleech -> 0
  1980. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_search_mode -> eponly
  1981. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_search_fallback -> 0
  1982. 2014-07-10 13:25:05 DEBUG MAIN :: iptorrents_backlog_only -> 0
  1983. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents -> 0
  1984. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_hash ->
  1985. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_digest ->
  1986. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_options ->
  1987. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_ratio ->
  1988. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_search_mode -> eponly
  1989. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_search_fallback -> 0
  1990. 2014-07-10 13:25:05 DEBUG MAIN :: tvtorrents_backlog_only -> 0
  1991. 2014-07-10 13:25:05 DEBUG MAIN :: ezrss -> 0
  1992. 2014-07-10 13:25:05 DEBUG MAIN :: ezrss_ratio ->
  1993. 2014-07-10 13:25:05 DEBUG MAIN :: ezrss_search_mode -> eponly
  1994. 2014-07-10 13:25:05 DEBUG MAIN :: ezrss_search_fallback -> 0
  1995. 2014-07-10 13:25:05 DEBUG MAIN :: ezrss_backlog_only -> 0
  1996. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents -> 0
  1997. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_confirmed -> 0
  1998. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_ratio ->
  1999. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_minseed -> 0
  2000. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_minleech -> 0
  2001. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_search_mode -> eponly
  2002. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_search_fallback -> 0
  2003. 2014-07-10 13:25:05 DEBUG MAIN :: kickasstorrents_backlog_only -> 0
  2004. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen -> 0
  2005. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_username ->
  2006. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_password -> ******
  2007. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_ratio ->
  2008. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_search_mode -> eponly
  2009. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_search_fallback -> 0
  2010. 2014-07-10 13:25:05 DEBUG MAIN :: nextgen_backlog_only -> 0
  2011. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday -> 0
  2012. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_username ->
  2013. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_password -> ******
  2014. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_ratio ->
  2015. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_minseed -> 0
  2016. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_minleech -> 0
  2017. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_freeleech -> 0
  2018. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_search_mode -> eponly
  2019. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_search_fallback -> 0
  2020. 2014-07-10 13:25:05 DEBUG MAIN :: torrentday_backlog_only -> 0
  2021. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech -> 0
  2022. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_username ->
  2023. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_password -> ******
  2024. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_ratio ->
  2025. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_minseed -> 0
  2026. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_minleech -> 0
  2027. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_search_mode -> eponly
  2028. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_search_fallback -> 0
  2029. 2014-07-10 13:25:05 DEBUG MAIN :: torrentleech_backlog_only -> 0
  2030. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess -> 0
  2031. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_username ->
  2032. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_password -> ******
  2033. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_ratio ->
  2034. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_minseed -> 0
  2035. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_minleech -> 0
  2036. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_search_mode -> eponly
  2037. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_search_fallback -> 0
  2038. 2014-07-10 13:25:05 DEBUG MAIN :: sceneaccess_backlog_only -> 0
  2039. 2014-07-10 13:25:05 DEBUG MAIN :: btn -> 0
  2040. 2014-07-10 13:25:05 DEBUG MAIN :: btn_api_key ->
  2041. 2014-07-10 13:25:05 DEBUG MAIN :: btn_ratio ->
  2042. 2014-07-10 13:25:05 DEBUG MAIN :: btn_search_mode -> eponly
  2043. 2014-07-10 13:25:05 DEBUG MAIN :: btn_search_fallback -> 0
  2044. 2014-07-10 13:25:05 DEBUG MAIN :: btn_backlog_only -> 0
  2045. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits -> 0
  2046. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_username ->
  2047. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_passkey ->
  2048. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_ratio ->
  2049. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_search_mode -> eponly
  2050. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_search_fallback -> 0
  2051. 2014-07-10 13:25:05 DEBUG MAIN :: hdbits_backlog_only -> 0
  2052. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay -> 0
  2053. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_proxy -> 0
  2054. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_proxy_url ->
  2055. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_confirmed -> 0
  2056. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_ratio ->
  2057. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_minseed -> 0
  2058. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_minleech -> 0
  2059. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_search_mode -> eponly
  2060. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_search_fallback -> 0
  2061. 2014-07-10 13:25:05 DEBUG MAIN :: thepiratebay_backlog_only -> 0
  2062. 2014-07-10 13:25:05 DEBUG MAIN :: nzbs_org -> 0
  2063. 2014-07-10 13:25:05 DEBUG MAIN :: nzbs_org_search_mode -> eponly
  2064. 2014-07-10 13:25:05 DEBUG MAIN :: nzbs_org_search_fallback -> 0
  2065. 2014-07-10 13:25:05 DEBUG MAIN :: nzbs_org_backlog_only -> 0
  2066. 2014-07-10 13:25:05 DEBUG MAIN :: womble_s_index -> 0
  2067. 2014-07-10 13:25:05 DEBUG MAIN :: womble_s_index_search_mode -> eponly
  2068. 2014-07-10 13:25:05 DEBUG MAIN :: womble_s_index_search_fallback -> 0
  2069. 2014-07-10 13:25:05 DEBUG MAIN :: womble_s_index_backlog_only -> 0
  2070. 2014-07-10 13:25:05 DEBUG MAIN :: sick_beard_index -> 0
  2071. 2014-07-10 13:25:05 DEBUG MAIN :: sick_beard_index_search_mode -> eponly
  2072. 2014-07-10 13:25:05 DEBUG MAIN :: sick_beard_index_search_fallback -> 0
  2073. 2014-07-10 13:25:05 DEBUG MAIN :: sick_beard_index_backlog_only -> 0
  2074. 2014-07-10 13:25:05 DEBUG MAIN :: usenet_crawler -> 0
  2075. 2014-07-10 13:25:05 DEBUG MAIN :: usenet_crawler_search_mode -> eponly
  2076. 2014-07-10 13:25:05 DEBUG MAIN :: usenet_crawler_search_fallback -> 0
  2077. 2014-07-10 13:25:05 DEBUG MAIN :: usenet_crawler_backlog_only -> 0
  2078. 2014-07-10 13:25:05 DEBUG MAIN :: fanzub -> 0
  2079. 2014-07-10 13:25:05 DEBUG MAIN :: fanzub_search_mode -> eponly
  2080. 2014-07-10 13:25:05 DEBUG MAIN :: fanzub_search_fallback -> 0
  2081. 2014-07-10 13:25:05 DEBUG MAIN :: fanzub_backlog_only -> 0
  2082. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs -> 0
  2083. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs_api_key ->
  2084. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs_username ->
  2085. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs_search_mode -> eponly
  2086. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs_search_fallback -> 0
  2087. 2014-07-10 13:25:05 DEBUG MAIN :: omgwtfnzbs_backlog_only -> 0
  2088. 2014-07-10 13:25:06 DEBUG MAIN :: clear_cache -> n843f5432hd342n897rce
  2089. 2014-07-10 13:25:06 INFO MAIN :: Loading initial show list
  2090. 2014-07-10 13:25:06 DB MAIN :: sickbeard.db: SELECT * FROM tv_shows
  2091. 2014-07-10 13:28:15 INFO MAIN :: Checking database structure...
  2092. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Initial Schema database upgrade
  2093. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2094. 2014-07-10 13:28:15 DEBUG MAIN :: InitialSchema upgrade not required
  2095. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Size And Scene Name Fields database upgrade
  2096. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2097. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2098. 2014-07-10 13:28:15 DEBUG MAIN :: AddSizeAndSceneNameFields upgrade not required
  2099. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Rename Season Folders database upgrade
  2100. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2101. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2102. 2014-07-10 13:28:15 DEBUG MAIN :: RenameSeasonFolders upgrade not required
  2103. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add1080p And Raw Qualities database upgrade
  2104. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2105. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2106. 2014-07-10 13:28:15 DEBUG MAIN :: Add1080pAndRawHDQualities upgrade not required
  2107. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Showid Tvdbid Index database upgrade
  2108. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2109. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2110. 2014-07-10 13:28:15 DEBUG MAIN :: AddShowidTvdbidIndex upgrade not required
  2111. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Last Update database upgrade
  2112. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2113. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2114. 2014-07-10 13:28:15 DEBUG MAIN :: AddLastUpdateTVDB upgrade not required
  2115. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Increase To15 database upgrade
  2116. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2117. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2118. 2014-07-10 13:28:15 DEBUG MAIN :: AddDBIncreaseTo15 upgrade not required
  2119. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Db Info database upgrade
  2120. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2121. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2122. 2014-07-10 13:28:15 DEBUG MAIN :: AddIMDbInfo upgrade not required
  2123. 2014-07-10 13:28:15 DEBUG MAIN :: Checking Add Proper Naming Support database upgrade
  2124. 2014-07-10 13:28:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2125. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2126. 2014-07-10 13:28:16 DEBUG MAIN :: AddProperNamingSupport upgrade not required
  2127. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Add Email Subscription Table database upgrade
  2128. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2129. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2130. 2014-07-10 13:28:16 DEBUG MAIN :: AddEmailSubscriptionTable upgrade not required
  2131. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Add Proper Search database upgrade
  2132. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2133. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2134. 2014-07-10 13:28:16 DEBUG MAIN :: AddProperSearch upgrade not required
  2135. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Add Dvd Order Option database upgrade
  2136. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2137. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2138. 2014-07-10 13:28:16 DEBUG MAIN :: AddDvdOrderOption upgrade not required
  2139. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Add Subtitles Support database upgrade
  2140. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2141. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2142. 2014-07-10 13:28:16 DEBUG MAIN :: AddSubtitlesSupport upgrade not required
  2143. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Convert Shows To Indexer Scheme database upgrade
  2144. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2145. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2146. 2014-07-10 13:28:16 DEBUG MAIN :: ConvertTVShowsToIndexerScheme upgrade not required
  2147. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Convert Episodes To Indexer Scheme database upgrade
  2148. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2149. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2150. 2014-07-10 13:28:16 DEBUG MAIN :: ConvertTVEpisodesToIndexerScheme upgrade not required
  2151. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  2152. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2153. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2154. 2014-07-10 13:28:16 DEBUG MAIN :: ConvertIMDBInfoToIndexerScheme upgrade not required
  2155. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  2156. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2157. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2158. 2014-07-10 13:28:16 DEBUG MAIN :: ConvertInfoToIndexerScheme upgrade not required
  2159. 2014-07-10 13:28:16 DEBUG MAIN :: Checking Add Archive First Match Option database upgrade
  2160. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2161. 2014-07-10 13:28:16 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2162. 2014-07-10 13:28:17 DEBUG MAIN :: AddArchiveFirstMatchOption upgrade not required
  2163. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Scene Numbering database upgrade
  2164. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2165. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2166. 2014-07-10 13:28:17 DEBUG MAIN :: AddSceneNumbering upgrade not required
  2167. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Convert Indexer To Integer database upgrade
  2168. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2169. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2170. 2014-07-10 13:28:17 DEBUG MAIN :: ConvertIndexerToInteger upgrade not required
  2171. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Require And Ignore Words database upgrade
  2172. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2173. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2174. 2014-07-10 13:28:17 DEBUG MAIN :: AddRequireAndIgnoreWords upgrade not required
  2175. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Sports Option database upgrade
  2176. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2177. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2178. 2014-07-10 13:28:17 DEBUG MAIN :: AddSportsOption upgrade not required
  2179. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Scene Numbering To Tv Episodes database upgrade
  2180. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2181. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2182. 2014-07-10 13:28:17 DEBUG MAIN :: AddSceneNumberingToTvEpisodes upgrade not required
  2183. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Anime Show database upgrade
  2184. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2185. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2186. 2014-07-10 13:28:17 DEBUG MAIN :: AddAnimeTVShow upgrade not required
  2187. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Absolute Numbering database upgrade
  2188. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2189. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2190. 2014-07-10 13:28:17 DEBUG MAIN :: AddAbsoluteNumbering upgrade not required
  2191. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  2192. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2193. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2194. 2014-07-10 13:28:17 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  2195. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Anime Blacklist Whitelist database upgrade
  2196. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2197. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2198. 2014-07-10 13:28:17 DEBUG MAIN :: AddAnimeBlacklistWhitelist upgrade not required
  2199. 2014-07-10 13:28:17 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  2200. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2201. 2014-07-10 13:28:17 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2202. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  2203. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Xem Refresh database upgrade
  2204. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2205. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2206. 2014-07-10 13:28:18 DEBUG MAIN :: AddXemRefresh upgrade not required
  2207. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene To Tv Shows database upgrade
  2208. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2209. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2210. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneToTvShows upgrade not required
  2211. 2014-07-10 13:28:18 INFO MAIN :: Checking database structure...
  2212. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Initial Schema database upgrade
  2213. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastUpdate',)
  2214. 2014-07-10 13:28:18 DEBUG MAIN :: InitialSchema upgrade not required
  2215. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene Exceptions database upgrade
  2216. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions',)
  2217. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneExceptions upgrade not required
  2218. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene Name Cache database upgrade
  2219. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_names',)
  2220. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneNameCache upgrade not required
  2221. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Network Timezones database upgrade
  2222. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('network_timezones',)
  2223. 2014-07-10 13:28:18 DEBUG MAIN :: AddNetworkTimezones upgrade not required
  2224. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Last Search database upgrade
  2225. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastSearch',)
  2226. 2014-07-10 13:28:18 DEBUG MAIN :: AddLastSearch upgrade not required
  2227. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene Exceptions Seasons database upgrade
  2228. 2014-07-10 13:28:18 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  2229. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneExceptionsSeasons upgrade not required
  2230. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene Exceptions Custom database upgrade
  2231. 2014-07-10 13:28:18 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  2232. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneExceptionsCustom upgrade not required
  2233. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Add Scene Exceptions Refresh database upgrade
  2234. 2014-07-10 13:28:18 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions_refresh',)
  2235. 2014-07-10 13:28:18 DEBUG MAIN :: AddSceneExceptionsRefresh upgrade not required
  2236. 2014-07-10 13:28:18 INFO MAIN :: Checking database structure...
  2237. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Initial Schema database upgrade
  2238. 2014-07-10 13:28:18 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('failed',)
  2239. 2014-07-10 13:28:18 DEBUG MAIN :: InitialSchema upgrade not required
  2240. 2014-07-10 13:28:18 DEBUG MAIN :: Checking Size And Provider database upgrade
  2241. 2014-07-10 13:28:18 DB MAIN :: failed.db: PRAGMA table_info(failed)
  2242. 2014-07-10 13:28:18 DB MAIN :: failed.db: PRAGMA table_info(failed)
  2243. 2014-07-10 13:28:18 DEBUG MAIN :: SizeAndProvider upgrade not required
  2244. 2014-07-10 13:28:18 DEBUG MAIN :: Checking History database upgrade
  2245. 2014-07-10 13:28:18 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('history',)
  2246. 2014-07-10 13:28:18 DEBUG MAIN :: History upgrade not required
  2247. 2014-07-10 13:28:18 DEBUG MAIN :: Checking History Status database upgrade
  2248. 2014-07-10 13:28:18 DB MAIN :: failed.db: PRAGMA table_info(history)
  2249. 2014-07-10 13:28:18 DEBUG MAIN :: HistoryStatus upgrade not required
  2250. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_indexer_id')
  2251. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_tv_episodes_showid_airdate')
  2252. 2014-07-10 13:28:18 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_showid')
  2253. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_status')
  2254. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_air')
  2255. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_sta_air')
  2256. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: SELECT show_id, indexer_id, COUNT(indexer_id) as count FROM tv_shows GROUP BY indexer_id HAVING count > 1
  2257. 2014-07-10 13:28:19 INFO MAIN :: No duplicate show, check passed
  2258. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: SELECT showid, season, episode, COUNT(showid) as count FROM tv_episodes GROUP BY showid, season, episode HAVING count > 1
  2259. 2014-07-10 13:28:19 INFO MAIN :: No duplicate episode, check passed
  2260. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: SELECT episode_id, showid, tv_shows.indexer_id FROM tv_episodes LEFT JOIN tv_shows ON tv_episodes.showid=tv_shows.indexer_id WHERE tv_shows.indexer_id is NULL
  2261. 2014-07-10 13:28:19 INFO MAIN :: No orphan episodes, check passed
  2262. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: SELECT episode_id, showid FROM tv_episodes WHERE airdate > ? AND status in (?,?) with args [735424, 5, 3]
  2263. 2014-07-10 13:28:19 INFO MAIN :: No UNAIRED episodes, check passed
  2264. 2014-07-10 13:28:19 DEBUG MAIN :: config_version -> 5
  2265. 2014-07-10 13:28:19 DEBUG MAIN :: Checking if we can use git commands: git version
  2266. 2014-07-10 13:28:19 DEBUG MAIN :: Executing git version with your shell in /media/sickbeard
  2267. 2014-07-10 13:28:19 DEBUG MAIN :: git output: git version 1.7.10.4
  2268. 2014-07-10 13:28:19 DEBUG MAIN :: git version : returned successful
  2269. 2014-07-10 13:28:19 DEBUG MAIN :: Using: git
  2270. 2014-07-10 13:28:19 DEBUG MAIN :: Executing git symbolic-ref -q HEAD with your shell in /media/sickbeard
  2271. 2014-07-10 13:28:19 DEBUG MAIN :: git output: refs/heads/dev
  2272. 2014-07-10 13:28:19 DEBUG MAIN :: git symbolic-ref -q HEAD : returned successful
  2273. 2014-07-10 13:28:19 DEBUG MAIN :: Retrieving the last check time from the DB
  2274. 2014-07-10 13:28:19 DB MAIN :: sickbeard.db: SELECT * FROM info
  2275. 2014-07-10 13:28:19 DEBUG MAIN :: nyaatorrents -> 0
  2276. 2014-07-10 13:28:19 DEBUG MAIN :: nyaatorrents_ratio ->
  2277. 2014-07-10 13:28:19 DEBUG MAIN :: nyaatorrents_search_mode -> eponly
  2278. 2014-07-10 13:28:19 DEBUG MAIN :: nyaatorrents_search_fallback -> 0
  2279. 2014-07-10 13:28:19 DEBUG MAIN :: nyaatorrents_backlog_only -> 0
  2280. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents -> 0
  2281. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_username ->
  2282. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_password -> ******
  2283. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_ratio ->
  2284. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_minseed -> 0
  2285. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_minleech -> 0
  2286. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_search_mode -> eponly
  2287. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_search_fallback -> 0
  2288. 2014-07-10 13:28:19 DEBUG MAIN :: hdtorrents_backlog_only -> 0
  2289. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd -> 0
  2290. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_username ->
  2291. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_password -> ******
  2292. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_ratio ->
  2293. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_minseed -> 0
  2294. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_minleech -> 0
  2295. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_freeleech -> 0
  2296. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_search_mode -> eponly
  2297. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_search_fallback -> 0
  2298. 2014-07-10 13:28:19 DEBUG MAIN :: speedcd_backlog_only -> 0
  2299. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents -> 0
  2300. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_username ->
  2301. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_password -> ******
  2302. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_ratio ->
  2303. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_freeleech -> 0
  2304. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_search_mode -> eponly
  2305. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_search_fallback -> 0
  2306. 2014-07-10 13:28:19 DEBUG MAIN :: iptorrents_backlog_only -> 0
  2307. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents -> 0
  2308. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_hash ->
  2309. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_digest ->
  2310. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_options ->
  2311. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_ratio ->
  2312. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_search_mode -> eponly
  2313. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_search_fallback -> 0
  2314. 2014-07-10 13:28:19 DEBUG MAIN :: tvtorrents_backlog_only -> 0
  2315. 2014-07-10 13:28:19 DEBUG MAIN :: ezrss -> 0
  2316. 2014-07-10 13:28:19 DEBUG MAIN :: ezrss_ratio ->
  2317. 2014-07-10 13:28:19 DEBUG MAIN :: ezrss_search_mode -> eponly
  2318. 2014-07-10 13:28:19 DEBUG MAIN :: ezrss_search_fallback -> 0
  2319. 2014-07-10 13:28:19 DEBUG MAIN :: ezrss_backlog_only -> 0
  2320. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents -> 0
  2321. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_confirmed -> 0
  2322. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_ratio ->
  2323. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_minseed -> 0
  2324. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_minleech -> 0
  2325. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_search_mode -> eponly
  2326. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_search_fallback -> 0
  2327. 2014-07-10 13:28:19 DEBUG MAIN :: kickasstorrents_backlog_only -> 0
  2328. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen -> 0
  2329. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_username ->
  2330. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_password -> ******
  2331. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_ratio ->
  2332. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_search_mode -> eponly
  2333. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_search_fallback -> 0
  2334. 2014-07-10 13:28:19 DEBUG MAIN :: nextgen_backlog_only -> 0
  2335. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday -> 0
  2336. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_username ->
  2337. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_password -> ******
  2338. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_ratio ->
  2339. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_minseed -> 0
  2340. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_minleech -> 0
  2341. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_freeleech -> 0
  2342. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_search_mode -> eponly
  2343. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_search_fallback -> 0
  2344. 2014-07-10 13:28:19 DEBUG MAIN :: torrentday_backlog_only -> 0
  2345. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech -> 0
  2346. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_username ->
  2347. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_password -> ******
  2348. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_ratio ->
  2349. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_minseed -> 0
  2350. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_minleech -> 0
  2351. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_search_mode -> eponly
  2352. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_search_fallback -> 0
  2353. 2014-07-10 13:28:19 DEBUG MAIN :: torrentleech_backlog_only -> 0
  2354. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess -> 0
  2355. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_username ->
  2356. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_password -> ******
  2357. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_ratio ->
  2358. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_minseed -> 0
  2359. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_minleech -> 0
  2360. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_search_mode -> eponly
  2361. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_search_fallback -> 0
  2362. 2014-07-10 13:28:19 DEBUG MAIN :: sceneaccess_backlog_only -> 0
  2363. 2014-07-10 13:28:19 DEBUG MAIN :: btn -> 0
  2364. 2014-07-10 13:28:19 DEBUG MAIN :: btn_api_key ->
  2365. 2014-07-10 13:28:19 DEBUG MAIN :: btn_ratio ->
  2366. 2014-07-10 13:28:19 DEBUG MAIN :: btn_search_mode -> eponly
  2367. 2014-07-10 13:28:19 DEBUG MAIN :: btn_search_fallback -> 0
  2368. 2014-07-10 13:28:19 DEBUG MAIN :: btn_backlog_only -> 0
  2369. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits -> 0
  2370. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_username ->
  2371. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_passkey ->
  2372. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_ratio ->
  2373. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_search_mode -> eponly
  2374. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_search_fallback -> 0
  2375. 2014-07-10 13:28:19 DEBUG MAIN :: hdbits_backlog_only -> 0
  2376. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay -> 0
  2377. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_proxy -> 0
  2378. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_proxy_url ->
  2379. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_confirmed -> 0
  2380. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_ratio ->
  2381. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_minseed -> 0
  2382. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_minleech -> 0
  2383. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_search_mode -> eponly
  2384. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_search_fallback -> 0
  2385. 2014-07-10 13:28:19 DEBUG MAIN :: thepiratebay_backlog_only -> 0
  2386. 2014-07-10 13:28:19 DEBUG MAIN :: nzbs_org -> 0
  2387. 2014-07-10 13:28:19 DEBUG MAIN :: nzbs_org_search_mode -> eponly
  2388. 2014-07-10 13:28:19 DEBUG MAIN :: nzbs_org_search_fallback -> 0
  2389. 2014-07-10 13:28:19 DEBUG MAIN :: nzbs_org_backlog_only -> 0
  2390. 2014-07-10 13:28:19 DEBUG MAIN :: womble_s_index -> 0
  2391. 2014-07-10 13:28:19 DEBUG MAIN :: womble_s_index_search_mode -> eponly
  2392. 2014-07-10 13:28:19 DEBUG MAIN :: womble_s_index_search_fallback -> 0
  2393. 2014-07-10 13:28:19 DEBUG MAIN :: womble_s_index_backlog_only -> 0
  2394. 2014-07-10 13:28:19 DEBUG MAIN :: sick_beard_index -> 0
  2395. 2014-07-10 13:28:19 DEBUG MAIN :: sick_beard_index_search_mode -> eponly
  2396. 2014-07-10 13:28:19 DEBUG MAIN :: sick_beard_index_search_fallback -> 0
  2397. 2014-07-10 13:28:19 DEBUG MAIN :: sick_beard_index_backlog_only -> 0
  2398. 2014-07-10 13:28:19 DEBUG MAIN :: usenet_crawler -> 0
  2399. 2014-07-10 13:28:19 DEBUG MAIN :: usenet_crawler_search_mode -> eponly
  2400. 2014-07-10 13:28:19 DEBUG MAIN :: usenet_crawler_search_fallback -> 0
  2401. 2014-07-10 13:28:19 DEBUG MAIN :: usenet_crawler_backlog_only -> 0
  2402. 2014-07-10 13:28:19 DEBUG MAIN :: fanzub -> 0
  2403. 2014-07-10 13:28:19 DEBUG MAIN :: fanzub_search_mode -> eponly
  2404. 2014-07-10 13:28:19 DEBUG MAIN :: fanzub_search_fallback -> 0
  2405. 2014-07-10 13:28:19 DEBUG MAIN :: fanzub_backlog_only -> 0
  2406. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs -> 0
  2407. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs_api_key ->
  2408. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs_username ->
  2409. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs_search_mode -> eponly
  2410. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs_search_fallback -> 0
  2411. 2014-07-10 13:28:19 DEBUG MAIN :: omgwtfnzbs_backlog_only -> 0
  2412. 2014-07-10 13:28:20 DEBUG MAIN :: clear_cache -> n843f5432hd342n897rce
  2413. 2014-07-10 13:28:20 INFO MAIN :: Loading initial show list
  2414. 2014-07-10 13:28:20 DB MAIN :: sickbeard.db: SELECT * FROM tv_shows
  2415. 2014-07-10 13:30:12 INFO MAIN :: Checking database structure...
  2416. 2014-07-10 13:30:12 DEBUG MAIN :: Checking Initial Schema database upgrade
  2417. 2014-07-10 13:30:12 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2418. 2014-07-10 13:30:12 DEBUG MAIN :: InitialSchema upgrade not required
  2419. 2014-07-10 13:30:12 DEBUG MAIN :: Checking Add Size And Scene Name Fields database upgrade
  2420. 2014-07-10 13:30:12 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2421. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2422. 2014-07-10 13:30:13 DEBUG MAIN :: AddSizeAndSceneNameFields upgrade not required
  2423. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Rename Season Folders database upgrade
  2424. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2425. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2426. 2014-07-10 13:30:13 DEBUG MAIN :: RenameSeasonFolders upgrade not required
  2427. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add1080p And Raw Qualities database upgrade
  2428. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2429. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2430. 2014-07-10 13:30:13 DEBUG MAIN :: Add1080pAndRawHDQualities upgrade not required
  2431. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Showid Tvdbid Index database upgrade
  2432. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2433. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2434. 2014-07-10 13:30:13 DEBUG MAIN :: AddShowidTvdbidIndex upgrade not required
  2435. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Last Update database upgrade
  2436. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2437. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2438. 2014-07-10 13:30:13 DEBUG MAIN :: AddLastUpdateTVDB upgrade not required
  2439. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Increase To15 database upgrade
  2440. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2441. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2442. 2014-07-10 13:30:13 DEBUG MAIN :: AddDBIncreaseTo15 upgrade not required
  2443. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Db Info database upgrade
  2444. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2445. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2446. 2014-07-10 13:30:13 DEBUG MAIN :: AddIMDbInfo upgrade not required
  2447. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Proper Naming Support database upgrade
  2448. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2449. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2450. 2014-07-10 13:30:13 DEBUG MAIN :: AddProperNamingSupport upgrade not required
  2451. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Email Subscription Table database upgrade
  2452. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2453. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2454. 2014-07-10 13:30:13 DEBUG MAIN :: AddEmailSubscriptionTable upgrade not required
  2455. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Proper Search database upgrade
  2456. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2457. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2458. 2014-07-10 13:30:13 DEBUG MAIN :: AddProperSearch upgrade not required
  2459. 2014-07-10 13:30:13 DEBUG MAIN :: Checking Add Dvd Order Option database upgrade
  2460. 2014-07-10 13:30:13 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2461. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2462. 2014-07-10 13:30:14 DEBUG MAIN :: AddDvdOrderOption upgrade not required
  2463. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Add Subtitles Support database upgrade
  2464. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2465. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2466. 2014-07-10 13:30:14 DEBUG MAIN :: AddSubtitlesSupport upgrade not required
  2467. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Convert Shows To Indexer Scheme database upgrade
  2468. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2469. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2470. 2014-07-10 13:30:14 DEBUG MAIN :: ConvertTVShowsToIndexerScheme upgrade not required
  2471. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Convert Episodes To Indexer Scheme database upgrade
  2472. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2473. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2474. 2014-07-10 13:30:14 DEBUG MAIN :: ConvertTVEpisodesToIndexerScheme upgrade not required
  2475. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  2476. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2477. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2478. 2014-07-10 13:30:14 DEBUG MAIN :: ConvertIMDBInfoToIndexerScheme upgrade not required
  2479. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Convert Info To Indexer Scheme database upgrade
  2480. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2481. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2482. 2014-07-10 13:30:14 DEBUG MAIN :: ConvertInfoToIndexerScheme upgrade not required
  2483. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Add Archive First Match Option database upgrade
  2484. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2485. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2486. 2014-07-10 13:30:14 DEBUG MAIN :: AddArchiveFirstMatchOption upgrade not required
  2487. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Add Scene Numbering database upgrade
  2488. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2489. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2490. 2014-07-10 13:30:14 DEBUG MAIN :: AddSceneNumbering upgrade not required
  2491. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Convert Indexer To Integer database upgrade
  2492. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2493. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2494. 2014-07-10 13:30:14 DEBUG MAIN :: ConvertIndexerToInteger upgrade not required
  2495. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Add Require And Ignore Words database upgrade
  2496. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2497. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2498. 2014-07-10 13:30:14 DEBUG MAIN :: AddRequireAndIgnoreWords upgrade not required
  2499. 2014-07-10 13:30:14 DEBUG MAIN :: Checking Add Sports Option database upgrade
  2500. 2014-07-10 13:30:14 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2501. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2502. 2014-07-10 13:30:15 DEBUG MAIN :: AddSportsOption upgrade not required
  2503. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Scene Numbering To Tv Episodes database upgrade
  2504. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2505. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2506. 2014-07-10 13:30:15 DEBUG MAIN :: AddSceneNumberingToTvEpisodes upgrade not required
  2507. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Anime Show database upgrade
  2508. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2509. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2510. 2014-07-10 13:30:15 DEBUG MAIN :: AddAnimeTVShow upgrade not required
  2511. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Absolute Numbering database upgrade
  2512. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2513. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2514. 2014-07-10 13:30:15 DEBUG MAIN :: AddAbsoluteNumbering upgrade not required
  2515. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  2516. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2517. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2518. 2014-07-10 13:30:15 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  2519. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Anime Blacklist Whitelist database upgrade
  2520. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2521. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2522. 2014-07-10 13:30:15 DEBUG MAIN :: AddAnimeBlacklistWhitelist upgrade not required
  2523. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Scene Absolute Numbering database upgrade
  2524. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2525. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2526. 2014-07-10 13:30:15 DEBUG MAIN :: AddSceneAbsoluteNumbering upgrade not required
  2527. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Xem Refresh database upgrade
  2528. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2529. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2530. 2014-07-10 13:30:15 DEBUG MAIN :: AddXemRefresh upgrade not required
  2531. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Scene To Tv Shows database upgrade
  2532. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('db_version',)
  2533. 2014-07-10 13:30:15 DB MAIN :: sickbeard.db: SELECT db_version FROM db_version
  2534. 2014-07-10 13:30:15 DEBUG MAIN :: AddSceneToTvShows upgrade not required
  2535. 2014-07-10 13:30:15 INFO MAIN :: Checking database structure...
  2536. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Initial Schema database upgrade
  2537. 2014-07-10 13:30:15 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastUpdate',)
  2538. 2014-07-10 13:30:15 DEBUG MAIN :: InitialSchema upgrade not required
  2539. 2014-07-10 13:30:15 DEBUG MAIN :: Checking Add Scene Exceptions database upgrade
  2540. 2014-07-10 13:30:15 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions',)
  2541. 2014-07-10 13:30:16 DEBUG MAIN :: AddSceneExceptions upgrade not required
  2542. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Scene Name Cache database upgrade
  2543. 2014-07-10 13:30:16 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_names',)
  2544. 2014-07-10 13:30:16 DEBUG MAIN :: AddSceneNameCache upgrade not required
  2545. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Network Timezones database upgrade
  2546. 2014-07-10 13:30:16 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('network_timezones',)
  2547. 2014-07-10 13:30:16 DEBUG MAIN :: AddNetworkTimezones upgrade not required
  2548. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Last Search database upgrade
  2549. 2014-07-10 13:30:16 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('lastSearch',)
  2550. 2014-07-10 13:30:16 DEBUG MAIN :: AddLastSearch upgrade not required
  2551. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Scene Exceptions Seasons database upgrade
  2552. 2014-07-10 13:30:16 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  2553. 2014-07-10 13:30:16 DEBUG MAIN :: AddSceneExceptionsSeasons upgrade not required
  2554. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Scene Exceptions Custom database upgrade
  2555. 2014-07-10 13:30:16 DB MAIN :: cache.db: PRAGMA table_info(scene_exceptions)
  2556. 2014-07-10 13:30:16 DEBUG MAIN :: AddSceneExceptionsCustom upgrade not required
  2557. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Add Scene Exceptions Refresh database upgrade
  2558. 2014-07-10 13:30:16 DB MAIN :: cache.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('scene_exceptions_refresh',)
  2559. 2014-07-10 13:30:16 DEBUG MAIN :: AddSceneExceptionsRefresh upgrade not required
  2560. 2014-07-10 13:30:16 INFO MAIN :: Checking database structure...
  2561. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Initial Schema database upgrade
  2562. 2014-07-10 13:30:16 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('failed',)
  2563. 2014-07-10 13:30:16 DEBUG MAIN :: InitialSchema upgrade not required
  2564. 2014-07-10 13:30:16 DEBUG MAIN :: Checking Size And Provider database upgrade
  2565. 2014-07-10 13:30:16 DB MAIN :: failed.db: PRAGMA table_info(failed)
  2566. 2014-07-10 13:30:16 DB MAIN :: failed.db: PRAGMA table_info(failed)
  2567. 2014-07-10 13:30:16 DEBUG MAIN :: SizeAndProvider upgrade not required
  2568. 2014-07-10 13:30:16 DEBUG MAIN :: Checking History database upgrade
  2569. 2014-07-10 13:30:16 DB MAIN :: failed.db: SELECT 1 FROM sqlite_master WHERE name = ?; with args ('history',)
  2570. 2014-07-10 13:30:16 DEBUG MAIN :: History upgrade not required
  2571. 2014-07-10 13:30:16 DEBUG MAIN :: Checking History Status database upgrade
  2572. 2014-07-10 13:30:16 DB MAIN :: failed.db: PRAGMA table_info(history)
  2573. 2014-07-10 13:30:16 DEBUG MAIN :: HistoryStatus upgrade not required
  2574. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_indexer_id')
  2575. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_tv_episodes_showid_airdate')
  2576. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_showid')
  2577. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_status')
  2578. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_air')
  2579. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: PRAGMA index_info('idx_sta_epi_sta_air')
  2580. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: SELECT show_id, indexer_id, COUNT(indexer_id) as count FROM tv_shows GROUP BY indexer_id HAVING count > 1
  2581. 2014-07-10 13:30:16 INFO MAIN :: No duplicate show, check passed
  2582. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: SELECT showid, season, episode, COUNT(showid) as count FROM tv_episodes GROUP BY showid, season, episode HAVING count > 1
  2583. 2014-07-10 13:30:16 INFO MAIN :: No duplicate episode, check passed
  2584. 2014-07-10 13:30:16 DB MAIN :: sickbeard.db: SELECT episode_id, showid, tv_shows.indexer_id FROM tv_episodes LEFT JOIN tv_shows ON tv_episodes.showid=tv_shows.indexer_id WHERE tv_shows.indexer_id is NULL
  2585. 2014-07-10 13:30:17 INFO MAIN :: No orphan episodes, check passed
  2586. 2014-07-10 13:30:17 DB MAIN :: sickbeard.db: SELECT episode_id, showid FROM tv_episodes WHERE airdate > ? AND status in (?,?) with args [735424, 5, 3]
  2587. 2014-07-10 13:30:17 INFO MAIN :: No UNAIRED episodes, check passed
  2588. 2014-07-10 13:30:17 DEBUG MAIN :: config_version -> 5
  2589. 2014-07-10 13:30:17 DEBUG MAIN :: Checking if we can use git commands: git version
  2590. 2014-07-10 13:30:17 DEBUG MAIN :: Executing git version with your shell in /media/sickbeard
  2591. 2014-07-10 13:30:17 DEBUG MAIN :: git output: git version 1.7.10.4
  2592. 2014-07-10 13:30:17 DEBUG MAIN :: git version : returned successful
  2593. 2014-07-10 13:30:17 DEBUG MAIN :: Using: git
  2594. 2014-07-10 13:30:17 DEBUG MAIN :: Executing git symbolic-ref -q HEAD with your shell in /media/sickbeard
  2595. 2014-07-10 13:30:17 DEBUG MAIN :: git output: refs/heads/dev
  2596. 2014-07-10 13:30:17 DEBUG MAIN :: git symbolic-ref -q HEAD : returned successful
  2597. 2014-07-10 13:30:17 DEBUG MAIN :: Retrieving the last check time from the DB
  2598. 2014-07-10 13:30:17 DB MAIN :: sickbeard.db: SELECT * FROM info
  2599. 2014-07-10 13:30:17 DEBUG MAIN :: nyaatorrents -> 0
  2600. 2014-07-10 13:30:17 DEBUG MAIN :: nyaatorrents_ratio ->
  2601. 2014-07-10 13:30:17 DEBUG MAIN :: nyaatorrents_search_mode -> eponly
  2602. 2014-07-10 13:30:17 DEBUG MAIN :: nyaatorrents_search_fallback -> 0
  2603. 2014-07-10 13:30:17 DEBUG MAIN :: nyaatorrents_backlog_only -> 0
  2604. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents -> 0
  2605. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_username ->
  2606. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_password -> ******
  2607. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_ratio ->
  2608. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_minseed -> 0
  2609. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_minleech -> 0
  2610. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_search_mode -> eponly
  2611. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_search_fallback -> 0
  2612. 2014-07-10 13:30:17 DEBUG MAIN :: hdtorrents_backlog_only -> 0
  2613. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd -> 0
  2614. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_username ->
  2615. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_password -> ******
  2616. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_ratio ->
  2617. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_minseed -> 0
  2618. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_minleech -> 0
  2619. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_freeleech -> 0
  2620. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_search_mode -> eponly
  2621. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_search_fallback -> 0
  2622. 2014-07-10 13:30:17 DEBUG MAIN :: speedcd_backlog_only -> 0
  2623. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents -> 0
  2624. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_username ->
  2625. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_password -> ******
  2626. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_ratio ->
  2627. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_freeleech -> 0
  2628. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_search_mode -> eponly
  2629. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_search_fallback -> 0
  2630. 2014-07-10 13:30:17 DEBUG MAIN :: iptorrents_backlog_only -> 0
  2631. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents -> 0
  2632. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_hash ->
  2633. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_digest ->
  2634. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_options ->
  2635. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_ratio ->
  2636. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_search_mode -> eponly
  2637. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_search_fallback -> 0
  2638. 2014-07-10 13:30:17 DEBUG MAIN :: tvtorrents_backlog_only -> 0
  2639. 2014-07-10 13:30:17 DEBUG MAIN :: ezrss -> 0
  2640. 2014-07-10 13:30:17 DEBUG MAIN :: ezrss_ratio ->
  2641. 2014-07-10 13:30:17 DEBUG MAIN :: ezrss_search_mode -> eponly
  2642. 2014-07-10 13:30:17 DEBUG MAIN :: ezrss_search_fallback -> 0
  2643. 2014-07-10 13:30:17 DEBUG MAIN :: ezrss_backlog_only -> 0
  2644. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents -> 0
  2645. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_confirmed -> 0
  2646. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_ratio ->
  2647. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_minseed -> 0
  2648. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_minleech -> 0
  2649. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_search_mode -> eponly
  2650. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_search_fallback -> 0
  2651. 2014-07-10 13:30:17 DEBUG MAIN :: kickasstorrents_backlog_only -> 0
  2652. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen -> 0
  2653. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_username ->
  2654. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_password -> ******
  2655. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_ratio ->
  2656. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_search_mode -> eponly
  2657. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_search_fallback -> 0
  2658. 2014-07-10 13:30:17 DEBUG MAIN :: nextgen_backlog_only -> 0
  2659. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday -> 0
  2660. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_username ->
  2661. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_password -> ******
  2662. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_ratio ->
  2663. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_minseed -> 0
  2664. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_minleech -> 0
  2665. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_freeleech -> 0
  2666. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_search_mode -> eponly
  2667. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_search_fallback -> 0
  2668. 2014-07-10 13:30:17 DEBUG MAIN :: torrentday_backlog_only -> 0
  2669. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech -> 0
  2670. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_username ->
  2671. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_password -> ******
  2672. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_ratio ->
  2673. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_minseed -> 0
  2674. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_minleech -> 0
  2675. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_search_mode -> eponly
  2676. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_search_fallback -> 0
  2677. 2014-07-10 13:30:17 DEBUG MAIN :: torrentleech_backlog_only -> 0
  2678. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess -> 0
  2679. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_username ->
  2680. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_password -> ******
  2681. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_ratio ->
  2682. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_minseed -> 0
  2683. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_minleech -> 0
  2684. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_search_mode -> eponly
  2685. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_search_fallback -> 0
  2686. 2014-07-10 13:30:17 DEBUG MAIN :: sceneaccess_backlog_only -> 0
  2687. 2014-07-10 13:30:17 DEBUG MAIN :: btn -> 0
  2688. 2014-07-10 13:30:17 DEBUG MAIN :: btn_api_key ->
  2689. 2014-07-10 13:30:17 DEBUG MAIN :: btn_ratio ->
  2690. 2014-07-10 13:30:17 DEBUG MAIN :: btn_search_mode -> eponly
  2691. 2014-07-10 13:30:17 DEBUG MAIN :: btn_search_fallback -> 0
  2692. 2014-07-10 13:30:17 DEBUG MAIN :: btn_backlog_only -> 0
  2693. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits -> 0
  2694. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_username ->
  2695. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_passkey ->
  2696. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_ratio ->
  2697. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_search_mode -> eponly
  2698. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_search_fallback -> 0
  2699. 2014-07-10 13:30:17 DEBUG MAIN :: hdbits_backlog_only -> 0
  2700. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay -> 0
  2701. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_proxy -> 0
  2702. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_proxy_url ->
  2703. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_confirmed -> 0
  2704. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_ratio ->
  2705. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_minseed -> 0
  2706. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_minleech -> 0
  2707. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_search_mode -> eponly
  2708. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_search_fallback -> 0
  2709. 2014-07-10 13:30:17 DEBUG MAIN :: thepiratebay_backlog_only -> 0
  2710. 2014-07-10 13:30:17 DEBUG MAIN :: nzbs_org -> 0
  2711. 2014-07-10 13:30:17 DEBUG MAIN :: nzbs_org_search_mode -> eponly
  2712. 2014-07-10 13:30:17 DEBUG MAIN :: nzbs_org_search_fallback -> 0
  2713. 2014-07-10 13:30:17 DEBUG MAIN :: nzbs_org_backlog_only -> 0
  2714. 2014-07-10 13:30:17 DEBUG MAIN :: womble_s_index -> 0
  2715. 2014-07-10 13:30:17 DEBUG MAIN :: womble_s_index_search_mode -> eponly
  2716. 2014-07-10 13:30:17 DEBUG MAIN :: womble_s_index_search_fallback -> 0
  2717. 2014-07-10 13:30:17 DEBUG MAIN :: womble_s_index_backlog_only -> 0
  2718. 2014-07-10 13:30:17 DEBUG MAIN :: sick_beard_index -> 0
  2719. 2014-07-10 13:30:17 DEBUG MAIN :: sick_beard_index_search_mode -> eponly
  2720. 2014-07-10 13:30:17 DEBUG MAIN :: sick_beard_index_search_fallback -> 0
  2721. 2014-07-10 13:30:17 DEBUG MAIN :: sick_beard_index_backlog_only -> 0
  2722. 2014-07-10 13:30:17 DEBUG MAIN :: usenet_crawler -> 0
  2723. 2014-07-10 13:30:17 DEBUG MAIN :: usenet_crawler_search_mode -> eponly
  2724. 2014-07-10 13:30:17 DEBUG MAIN :: usenet_crawler_search_fallback -> 0
  2725. 2014-07-10 13:30:17 DEBUG MAIN :: usenet_crawler_backlog_only -> 0
  2726. 2014-07-10 13:30:17 DEBUG MAIN :: fanzub -> 0
  2727. 2014-07-10 13:30:17 DEBUG MAIN :: fanzub_search_mode -> eponly
  2728. 2014-07-10 13:30:17 DEBUG MAIN :: fanzub_search_fallback -> 0
  2729. 2014-07-10 13:30:17 DEBUG MAIN :: fanzub_backlog_only -> 0
  2730. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs -> 0
  2731. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs_api_key ->
  2732. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs_username ->
  2733. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs_search_mode -> eponly
  2734. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs_search_fallback -> 0
  2735. 2014-07-10 13:30:17 DEBUG MAIN :: omgwtfnzbs_backlog_only -> 0
  2736. 2014-07-10 13:30:17 DEBUG MAIN :: clear_cache -> n843f5432hd342n897rce
  2737. 2014-07-10 13:30:17 INFO MAIN :: Loading initial show list
  2738. 2014-07-10 13:30:17 DB MAIN :: sickbeard.db: SELECT * FROM tv_shows
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement