7 Star 13 Fork 6

Syadn/PyNote

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
note.log 176.11 KB
一键复制 编辑 原始数据 按行查看 历史
Syadn 提交于 2015-02-15 14:41 +08:00 . ӹرմʾ
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725
[2015-02-10 21:21:39,813 - main_note.py:592] [INFO] <module>(): program start
[2015-02-10 21:21:48,631 - main_note.py:167] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 21:21:48,763 - main_note.py:171] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 21:22:22,770 - main_note.py:462] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 21:22:22,770 - main_note.py:465] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1d367a0>: '20150210212146333054.note'}
[2015-02-10 21:22:58,974 - main_note.py:592] [INFO] <module>(): program start
[2015-02-10 21:22:59,315 - main_note.py:167] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 21:22:59,315 - main_note.py:171] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 21:23:11,172 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:12,691 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:13,395 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:14,275 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:17,316 - main_note.py:246] [DEBUG] setPurple(): setPurple
[2015-02-10 21:23:17,795 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:18,723 - main_note.py:238] [DEBUG] setPink(): setPink
[2015-02-10 21:23:19,195 - main_note.py:183] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 21:23:20,380 - main_note.py:242] [DEBUG] setBlue(): setBlue
[2015-02-10 21:23:23,683 - main_note.py:462] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 21:23:23,683 - main_note.py:465] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2bfc7a0>: '20150210212259292121.note'}
[2015-02-10 21:23:23,686 - main_note.py:598] [INFO] <module>(): program end
[2015-02-10 21:24:09,430 - main_note.py:592] [INFO] <module>(): program start
[2015-02-10 21:24:09,675 - main_note.py:167] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 21:24:09,676 - main_note.py:171] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 21:24:46,102 - main_note.py:462] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 21:24:46,102 - main_note.py:465] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x21fb7a0>: '20150210212409655981.note'}
[2015-02-10 21:24:46,105 - main_note.py:598] [INFO] <module>(): program end
[2015-02-10 22:00:54,099 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:00:55,204 - main_note.py:514] [DEBUG] createWindowFromFileList(): ['20150210212409655981.note']
[2015-02-10 22:00:55,205 - main_note.py:527] [ERROR] createWindowFromFileList(): file not found
[2015-02-10 22:01:31,281 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:01:31,521 - main_note.py:514] [DEBUG] createWindowFromFileList(): ['20150210212409655981.note']
[2015-02-10 22:01:31,522 - main_note.py:527] [ERROR] createWindowFromFileList(): file not found
[2015-02-10 22:05:17,771 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:05:18,366 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:05:18,366 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:05:34,082 - main_note.py:470] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:05:34,082 - main_note.py:473] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xddc7a0>: '20150210220518091283.note'}
[2015-02-10 22:05:34,114 - main_note.py:606] [INFO] <module>(): program end
[2015-02-10 22:08:20,421 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:08:20,668 - main_note.py:514] [DEBUG] createWindowFromFileList(): ['20150210220518091283.note']
[2015-02-10 22:08:20,984 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:08:20,985 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:08:21,010 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:08:21,011 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:08:26,005 - main_note.py:470] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:08:26,006 - main_note.py:473] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1caf8c0>: u'20150210220518091283.note'}
[2015-02-10 22:08:26,008 - main_note.py:606] [INFO] <module>(): program end
[2015-02-10 22:08:28,523 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:08:28,738 - main_note.py:514] [DEBUG] createWindowFromFileList(): ['20150210220518091283.note']
[2015-02-10 22:08:28,833 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:08:28,834 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:08:28,944 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:08:28,944 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:08:36,219 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:08:36,219 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:09:18,641 - main_note.py:470] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:09:18,642 - main_note.py:473] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x12b9830>: '20150210220836216220.note', <__main__.NoteWindow object at 0x12b98c0>: u'20150210220518091283.note'}
[2015-02-10 22:09:18,644 - main_note.py:606] [INFO] <module>(): program end
[2015-02-10 22:23:51,071 - main_note.py:600] [INFO] <module>(): program start
[2015-02-10 22:23:51,485 - main_note.py:514] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:23:51,536 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:23:51,537 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:23:51,674 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:23:51,681 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:23:51,686 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:23:51,690 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:23:51,765 - main_note.py:175] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:23:51,766 - main_note.py:179] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:25:07,830 - main_note.py:470] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:25:07,831 - main_note.py:473] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x28047a0>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x2804830>: u'20150210220836216220.note'}
[2015-02-10 22:25:07,833 - main_note.py:606] [INFO] <module>(): program end
[2015-02-10 22:25:53,535 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:25:53,829 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:25:53,851 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:25:53,851 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:25:53,950 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:25:53,952 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:25:53,958 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:25:53,962 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:25:53,996 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:25:53,996 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:27:16,236 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:27:16,248 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1db57a0>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x1db5830>: u'20150210220836216220.note'}
[2015-02-10 22:27:16,250 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:27:37,717 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:27:38,020 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:27:38,056 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:27:38,057 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:27:38,213 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:27:38,214 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:27:38,220 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:27:38,228 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:27:38,297 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:27:38,298 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:28:39,680 - main_note.py:192] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 22:28:48,121 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:28:48,121 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1ee27a0>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x1ee2830>: u'20150210220836216220.note'}
[2015-02-10 22:28:48,123 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:29:38,603 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:29:38,890 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:29:38,916 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:29:38,917 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:29:39,051 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:29:39,052 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:29:39,055 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:29:39,056 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:29:39,075 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:29:39,076 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:29:42,630 - main_note.py:192] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 22:49:06,270 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:49:06,307 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1b827a0>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x1b82830>: u'20150210220836216220.note'}
[2015-02-10 22:49:06,312 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:50:29,933 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:50:30,299 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:50:30,370 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:50:30,371 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:50:30,527 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:50:30,528 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:50:30,616 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:50:30,635 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:50:30,644 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:50:30,645 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:50:53,668 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:50:53,669 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1da67a0>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x1da6830>: u'20150210220836216220.note'}
[2015-02-10 22:50:53,670 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:54:56,462 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:54:56,867 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:54:56,903 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:54:56,904 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:54:57,042 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:54:57,044 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:54:57,051 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:54:57,062 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:54:57,099 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:54:57,109 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:55:27,527 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:55:27,528 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1b2a830>: u'20150210220518091283.note', <__main__.NoteWindow object at 0x1b2a8c0>: u'20150210220836216220.note'}
[2015-02-10 22:55:27,530 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:55:39,140 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:55:39,460 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:55:39,490 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:55:39,491 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:55:39,601 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:55:39,602 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:55:39,613 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:55:39,613 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:55:39,701 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:55:39,702 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:56:03,941 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:56:03,941 - main_note.py:474] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xd77830>: u'20150210220518091283.note', <__main__.NoteWindow object at 0xd778c0>: u'20150210220836216220.note'}
[2015-02-10 22:56:03,962 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:58:20,192 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:58:20,472 - main_note.py:515] [DEBUG] createWindowFromFileList(): ['20150210220836216220.note', '20150210220518091283.note']
[2015-02-10 22:58:20,509 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:20,510 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:58:20,601 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:20,612 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:58:20,615 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:20,616 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:58:20,713 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:20,713 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:58:25,891 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-10 22:58:28,029 - main_note.py:192] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-10 22:58:33,827 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:33,827 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:58:40,097 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-10 22:58:44,040 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-10 22:58:44,363 - main_note.py:556] [DEBUG] closeWindow(): should exit program
[2015-02-10 22:58:44,364 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:58:44,364 - main_note.py:474] [DEBUG] saveAll(): {}
[2015-02-10 22:58:44,365 - main_note.py:607] [INFO] <module>(): program end
[2015-02-10 22:58:58,608 - main_note.py:601] [INFO] <module>(): program start
[2015-02-10 22:58:58,871 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:58:58,872 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:59:01,552 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-10 22:59:01,561 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-10 22:59:16,843 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-10 22:59:19,365 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-10 22:59:19,396 - main_note.py:556] [DEBUG] closeWindow(): should exit program
[2015-02-10 22:59:19,400 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-10 22:59:19,405 - main_note.py:474] [DEBUG] saveAll(): {}
[2015-02-10 22:59:19,406 - main_note.py:607] [INFO] <module>(): program end
[2015-02-12 14:28:27,980 - main_note.py:601] [INFO] <module>(): program start
[2015-02-12 14:28:32,183 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 14:28:32,184 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 14:28:43,231 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 14:28:43,232 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 14:28:52,113 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-12 14:28:55,432 - main_note.py:547] [DEBUG] closeWindow(): closeWindow
[2015-02-12 14:28:55,456 - main_note.py:556] [DEBUG] closeWindow(): should exit program
[2015-02-12 14:28:55,461 - main_note.py:471] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 14:28:55,462 - main_note.py:474] [DEBUG] saveAll(): {}
[2015-02-12 14:28:55,462 - main_note.py:607] [INFO] <module>(): program end
[2015-02-12 18:55:22,619 - main_note.py:603] [INFO] <module>(): program start
[2015-02-12 18:55:39,799 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 18:55:39,947 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 18:56:50,422 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 18:56:50,424 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 18:57:04,212 - main_note.py:549] [DEBUG] closeWindow(): closeWindow
[2015-02-12 18:57:06,242 - main_note.py:549] [DEBUG] closeWindow(): closeWindow
[2015-02-12 18:57:06,301 - main_note.py:558] [DEBUG] closeWindow(): should exit program
[2015-02-12 18:57:06,322 - main_note.py:473] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 18:57:06,322 - main_note.py:476] [DEBUG] saveAll(): {}
[2015-02-12 18:57:06,322 - main_note.py:609] [INFO] <module>(): program end
[2015-02-12 18:58:56,107 - main_note.py:603] [INFO] <module>(): program start
[2015-02-12 18:58:56,568 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 18:58:56,569 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 18:59:01,823 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 18:59:01,823 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 18:59:09,304 - main_note.py:549] [DEBUG] closeWindow(): closeWindow
[2015-02-12 18:59:13,052 - main_note.py:549] [DEBUG] closeWindow(): closeWindow
[2015-02-12 18:59:13,144 - main_note.py:558] [DEBUG] closeWindow(): should exit program
[2015-02-12 18:59:13,145 - main_note.py:473] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 18:59:13,145 - main_note.py:476] [DEBUG] saveAll(): {}
[2015-02-12 18:59:13,146 - main_note.py:609] [INFO] <module>(): program end
[2015-02-12 19:16:23,963 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 19:16:50,000 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 19:16:50,292 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:16:50,294 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:16:53,339 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:16:53,340 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:17:02,517 - main_note.py:555] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:17:04,931 - main_note.py:555] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:17:05,095 - main_note.py:564] [DEBUG] closeWindow(): should exit program
[2015-02-12 19:17:05,096 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:17:05,097 - main_note.py:482] [DEBUG] saveAll(): {}
[2015-02-12 19:17:05,097 - main_note.py:615] [INFO] <module>(): program end
[2015-02-12 19:17:56,188 - main_note.py:610] [INFO] <module>(): program start
[2015-02-12 19:17:56,530 - main_note.py:179] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:17:56,531 - main_note.py:183] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:17:57,674 - main_note.py:179] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:17:57,674 - main_note.py:183] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:18:07,731 - main_note.py:480] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:18:07,731 - main_note.py:483] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x242ef80>: '20150212191757671278.note', <__main__.NoteWindow object at 0x242e8c0>: '20150212191756507550.note'}
[2015-02-12 19:18:07,868 - main_note.py:616] [INFO] <module>(): program end
[2015-02-12 19:18:44,854 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 19:18:45,097 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212191757671278.note', '20150212191756507550.note']
[2015-02-12 19:18:45,120 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:18:45,121 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:18:45,174 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:18:45,179 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:18:45,191 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:18:45,192 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:18:45,268 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:18:45,269 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:18:56,153 - main_note.py:554] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:19:00,995 - main_note.py:554] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:19:01,027 - main_note.py:563] [DEBUG] closeWindow(): should exit program
[2015-02-12 19:19:01,028 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:19:01,028 - main_note.py:481] [DEBUG] saveAll(): {}
[2015-02-12 19:19:01,029 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 19:19:39,940 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 19:19:40,227 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:19:40,228 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:19:42,143 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:19:42,144 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:19:46,891 - main_note.py:554] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:19:48,682 - main_note.py:554] [DEBUG] closeWindow(): closeWindow
[2015-02-12 19:19:49,030 - main_note.py:563] [DEBUG] closeWindow(): should exit program
[2015-02-12 19:19:49,031 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:19:49,032 - main_note.py:481] [DEBUG] saveAll(): {}
[2015-02-12 19:19:49,032 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 19:27:05,394 - main_note.py:607] [INFO] <module>(): program start
[2015-02-12 19:27:05,849 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:27:05,856 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:27:07,754 - main_note.py:176] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:27:07,757 - main_note.py:180] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:27:25,434 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:27:25,434 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x13b1f80>: '20150212192707751136.note', <__main__.NoteWindow object at 0x13b1830>: '20150212192705731783.note'}
[2015-02-12 19:27:25,438 - main_note.py:613] [INFO] <module>(): program end
[2015-02-12 19:31:37,310 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 19:31:37,552 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 19:31:37,579 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:31:37,579 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:31:37,731 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:31:37,738 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:31:37,746 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:31:37,747 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:31:37,802 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:31:37,802 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:31:57,245 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:31:57,245 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1e93830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1e938c0>: u'20150212192705731783.note'}
[2015-02-12 19:31:57,247 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 19:33:57,019 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 19:33:57,523 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 19:33:57,559 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:33:57,560 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:33:57,619 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:33:57,619 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:33:57,623 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:33:57,706 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:33:57,773 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:33:57,774 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:34:14,174 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:34:14,175 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1f3b830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1f3b8c0>: u'20150212192705731783.note'}
[2015-02-12 19:34:14,176 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 19:51:37,428 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 19:51:38,053 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 19:51:38,392 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:51:38,426 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:51:38,486 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:51:38,494 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:51:38,498 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:51:38,499 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:51:38,561 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 19:51:38,561 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 19:52:19,655 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 19:52:19,655 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1550830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x15508c0>: u'20150212192705731783.note'}
[2015-02-12 19:52:19,674 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 20:07:48,460 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 20:07:56,735 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:07:58,888 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:07:58,923 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:07:59,087 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:07:59,088 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdf
[2015-02-12 20:07:59,125 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:07:59,126 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:07:59,411 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:07:59,412 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasf
[2015-02-12 20:08:36,202 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:08:36,203 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1c6a830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1c6a8c0>: u'20150212192705731783.note'}
[2015-02-12 20:08:36,325 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 20:08:38,585 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 20:08:39,347 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:08:39,372 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:39,373 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:08:39,408 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:39,409 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdf
[2015-02-12 20:08:39,428 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:39,428 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:08:39,542 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:39,543 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasf
[2015-02-12 20:08:51,630 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:08:51,632 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2cea830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x2cea8c0>: u'20150212192705731783.note'}
[2015-02-12 20:08:51,637 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 20:08:53,323 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 20:08:53,728 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:08:53,753 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:53,753 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:08:53,818 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:53,819 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsad
[2015-02-12 20:08:53,824 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:53,825 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:08:53,874 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:08:53,876 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasfasfdsdf
[2015-02-12 20:09:02,801 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:09:02,803 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x133f830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x133f8c0>: u'20150212192705731783.note'}
[2015-02-12 20:09:02,806 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 20:12:03,701 - main_note.py:602] [INFO] <module>(): program start
[2015-02-12 20:12:04,018 - main_note.py:516] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:12:04,054 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:04,055 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:12:04,164 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:04,164 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsad
[2015-02-12 20:12:04,169 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:04,170 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:12:04,197 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:04,198 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasfasfdsdf
[2015-02-12 20:12:12,012 - main_note.py:193] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-12 20:12:14,857 - main_note.py:472] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:12:14,880 - main_note.py:475] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x21397a0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x2139830>: u'20150212192705731783.note'}
[2015-02-12 20:12:14,956 - main_note.py:608] [INFO] <module>(): program end
[2015-02-12 20:12:31,439 - main_note.py:602] [INFO] <module>(): program start
[2015-02-12 20:12:31,923 - main_note.py:516] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:12:31,943 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:31,944 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:12:32,016 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:32,016 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsad
[2015-02-12 20:12:32,020 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:32,021 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:12:32,049 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:12:32,050 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasfasfdsdf
[2015-02-12 20:13:06,300 - main_note.py:472] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:13:06,301 - main_note.py:475] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x211f7a0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x211f830>: u'20150212192705731783.note'}
[2015-02-12 20:13:06,334 - main_note.py:608] [INFO] <module>(): program end
[2015-02-12 20:13:19,915 - main_note.py:602] [INFO] <module>(): program start
[2015-02-12 20:13:20,214 - main_note.py:516] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:13:20,245 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:13:20,251 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:13:20,344 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:13:20,345 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsad
[2015-02-12 20:13:20,349 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:13:20,349 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:13:20,434 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:13:20,435 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdasfasfdsdf
[2015-02-12 20:13:30,572 - main_note.py:472] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:13:30,574 - main_note.py:475] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xe317a0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xe31830>: u'20150212192705731783.note'}
[2015-02-12 20:13:30,577 - main_note.py:608] [INFO] <module>(): program end
[2015-02-12 20:14:14,234 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 20:14:14,677 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:14:14,698 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:14:14,699 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:14:14,752 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:14:14,753 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsaf
[2015-02-12 20:14:14,757 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:14:14,758 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:14:14,831 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:14:14,832 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdf
[2015-02-12 20:14:26,402 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:14:26,402 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x257a830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x257a8c0>: u'20150212192705731783.note'}
[2015-02-12 20:14:26,406 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 20:15:21,430 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 20:15:21,796 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:15:21,830 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:15:21,831 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:15:21,907 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:15:21,908 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsaf
[2015-02-12 20:15:21,912 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:15:21,913 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:15:21,938 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:15:21,939 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 20:16:28,619 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:16:28,619 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x22b4830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x22b48c0>: u'20150212192705731783.note'}
[2015-02-12 20:16:28,624 - main_note.py:615] [INFO] <module>(): program end
[2015-02-12 20:16:30,659 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 20:16:31,277 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 20:16:31,321 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:16:31,322 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:16:31,370 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:16:31,371 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsaf
[2015-02-12 20:16:31,377 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:16:31,378 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 20:16:31,409 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 20:16:31,409 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 20:18:30,569 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 20:18:30,572 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1ef0830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1ef08c0>: u'20150212192705731783.note'}
[2015-02-12 20:18:30,575 - main_note.py:615] [INFO] <module>(): program end
[2015-02-12 22:03:51,465 - main_note.py:608] [INFO] <module>(): program start
[2015-02-12 22:03:53,432 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:03:53,886 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:03:53,887 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:03:53,934 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:03:53,935 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdf
[2015-02-12 22:03:53,952 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:03:53,953 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:03:54,020 - main_note.py:177] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:03:54,021 - main_note.py:181] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:06:18,829 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:06:18,831 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2328830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x23288c0>: u'20150212192705731783.note'}
[2015-02-12 22:06:18,835 - main_note.py:614] [INFO] <module>(): program end
[2015-02-12 22:06:48,275 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 22:06:48,579 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:06:48,669 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:06:48,669 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:06:48,724 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:06:48,727 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdf
[2015-02-12 22:06:48,741 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:06:48,750 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:06:48,815 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:06:48,816 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:08:13,764 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:08:13,765 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1c278c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1c27950>: u'20150212192705731783.note'}
[2015-02-12 22:08:13,855 - main_note.py:615] [INFO] <module>(): program end
[2015-02-12 22:08:21,120 - main_note.py:609] [INFO] <module>(): program start
[2015-02-12 22:08:22,033 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:08:22,064 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:08:22,065 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:08:22,177 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:08:22,177 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdf
[2015-02-12 22:08:22,182 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:08:22,182 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:08:22,256 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:08:22,257 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:09:20,693 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:09:20,695 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xf2d8c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xf2d950>: u'20150212192705731783.note'}
[2015-02-12 22:09:20,698 - main_note.py:615] [INFO] <module>(): program end
[2015-02-12 22:11:42,015 - main_note.py:615] [INFO] <module>(): program start
[2015-02-12 22:11:42,406 - main_note.py:529] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:11:43,013 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:11:43,013 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:11:43,143 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:11:43,144 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:11:43,258 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:11:43,264 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:11:43,335 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:11:43,336 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:11:55,130 - main_note.py:485] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:11:55,130 - main_note.py:488] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x21b98c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x21b9950>: u'20150212192705731783.note'}
[2015-02-12 22:11:55,132 - main_note.py:621] [INFO] <module>(): program end
[2015-02-12 22:12:02,652 - main_note.py:615] [INFO] <module>(): program start
[2015-02-12 22:12:02,913 - main_note.py:529] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:12:02,936 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:12:02,937 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:12:03,088 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:12:03,088 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:12:03,092 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:12:03,096 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:12:03,154 - main_note.py:184] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:12:03,154 - main_note.py:188] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:12:10,870 - main_note.py:485] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:12:10,871 - main_note.py:488] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xee18c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xee1950>: u'20150212192705731783.note'}
[2015-02-12 22:12:10,874 - main_note.py:621] [INFO] <module>(): program end
[2015-02-12 22:15:46,088 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:15:46,388 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:15:46,416 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:15:46,417 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:15:46,480 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:15:46,480 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:15:46,485 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:15:46,487 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:15:46,580 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:15:46,581 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:15:53,066 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:15:53,067 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1607830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x16078c0>: u'20150212192705731783.note'}
[2015-02-12 22:15:53,070 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:16:16,205 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:16:16,553 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:16:16,583 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:16,591 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:16:16,654 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:16,655 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:16:16,658 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:16,659 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:16:16,704 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:16,704 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:16:22,249 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:16:22,249 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x148c830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x148c8c0>: u'20150212192705731783.note'}
[2015-02-12 22:16:22,252 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:16:42,696 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:16:42,938 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:16:42,971 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:42,972 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:16:43,071 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:43,073 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:16:43,103 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:43,107 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:16:43,124 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:16:43,124 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:16:59,889 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:16:59,890 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xef6830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xef68c0>: u'20150212192705731783.note'}
[2015-02-12 22:16:59,901 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:17:17,490 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:17:17,857 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:17:17,880 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:17,880 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:17,941 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:17,941 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:17:17,947 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:17,956 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:17,984 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:17,985 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:17:23,691 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:17:23,692 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x245a830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x245a8c0>: u'20150212192705731783.note'}
[2015-02-12 22:17:23,695 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:17:29,409 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:17:29,730 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:17:29,774 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:29,775 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:29,858 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:29,868 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:17:29,872 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:29,872 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:29,966 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:29,967 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:17:36,525 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:17:36,526 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1589830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x15898c0>: u'20150212192705731783.note'}
[2015-02-12 22:17:36,528 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:17:45,055 - main_note.py:619] [INFO] <module>(): program start
[2015-02-12 22:17:45,259 - main_note.py:533] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:17:45,280 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:45,281 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:45,336 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:45,349 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:17:45,352 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:45,357 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:17:45,413 - main_note.py:188] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:17:45,413 - main_note.py:192] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:17:55,086 - main_note.py:489] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:17:55,087 - main_note.py:492] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1644830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x16448c0>: u'20150212192705731783.note'}
[2015-02-12 22:17:55,090 - main_note.py:625] [INFO] <module>(): program end
[2015-02-12 22:18:55,178 - main_note.py:620] [INFO] <module>(): program start
[2015-02-12 22:18:55,430 - main_note.py:534] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:18:55,457 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:18:55,458 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:18:55,555 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:18:55,562 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:18:55,567 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:18:55,574 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:18:55,603 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:18:55,604 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:18:59,596 - main_note.py:490] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:18:59,618 - main_note.py:493] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1f5d830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1f5d8c0>: u'20150212192705731783.note'}
[2015-02-12 22:18:59,633 - main_note.py:626] [INFO] <module>(): program end
[2015-02-12 22:19:14,816 - main_note.py:620] [INFO] <module>(): program start
[2015-02-12 22:19:15,132 - main_note.py:534] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:19:15,180 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:19:15,181 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:19:15,257 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:19:15,264 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:19:15,272 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:19:15,274 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:19:15,396 - main_note.py:189] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:19:15,397 - main_note.py:193] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:21:14,917 - main_note.py:621] [INFO] <module>(): program start
[2015-02-12 22:21:15,416 - main_note.py:535] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:21:15,507 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:15,508 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:21:15,584 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:15,584 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:21:15,588 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:15,593 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:21:15,720 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:15,723 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:21:21,566 - main_note.py:491] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:21:21,567 - main_note.py:494] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1803830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x18038c0>: u'20150212192705731783.note'}
[2015-02-12 22:21:21,569 - main_note.py:627] [INFO] <module>(): program end
[2015-02-12 22:21:39,248 - main_note.py:621] [INFO] <module>(): program start
[2015-02-12 22:21:39,561 - main_note.py:535] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:21:39,585 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:39,586 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:21:39,635 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:39,635 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:21:39,644 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:39,648 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:21:39,695 - main_note.py:190] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:21:39,696 - main_note.py:194] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:21:51,023 - main_note.py:491] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:21:51,023 - main_note.py:494] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x288b830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x288b8c0>: u'20150212192705731783.note'}
[2015-02-12 22:21:51,026 - main_note.py:627] [INFO] <module>(): program end
[2015-02-12 22:22:25,169 - main_note.py:622] [INFO] <module>(): program start
[2015-02-12 22:22:25,401 - main_note.py:536] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:22:25,423 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:25,424 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:22:25,506 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:25,507 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:22:25,511 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:25,517 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:22:25,555 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:25,559 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:22:33,580 - main_note.py:492] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:22:33,580 - main_note.py:495] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2870830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x28708c0>: u'20150212192705731783.note'}
[2015-02-12 22:22:33,583 - main_note.py:628] [INFO] <module>(): program end
[2015-02-12 22:22:57,441 - main_note.py:623] [INFO] <module>(): program start
[2015-02-12 22:22:57,690 - main_note.py:537] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:22:57,710 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:57,710 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:22:57,816 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:57,823 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:22:57,830 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:57,831 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:22:57,849 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:22:57,851 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:23:01,780 - main_note.py:493] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:23:01,781 - main_note.py:496] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1f0c830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1f0c8c0>: u'20150212192705731783.note'}
[2015-02-12 22:23:01,785 - main_note.py:629] [INFO] <module>(): program end
[2015-02-12 22:27:21,569 - main_note.py:622] [INFO] <module>(): program start
[2015-02-12 22:27:21,885 - main_note.py:536] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:27:21,920 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:21,921 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:27:22,002 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:22,011 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:27:22,019 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:22,020 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:27:22,061 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:22,062 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:27:28,344 - main_note.py:492] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:27:28,345 - main_note.py:495] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1eeb830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1eeb8c0>: u'20150212192705731783.note'}
[2015-02-12 22:27:28,348 - main_note.py:628] [INFO] <module>(): program end
[2015-02-12 22:27:37,688 - main_note.py:622] [INFO] <module>(): program start
[2015-02-12 22:27:38,063 - main_note.py:536] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:27:38,089 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:38,090 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:27:38,147 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:38,148 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:27:38,152 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:38,153 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:27:38,206 - main_note.py:191] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:27:38,206 - main_note.py:195] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:27:44,272 - main_note.py:492] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:27:44,272 - main_note.py:495] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1679830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x16798c0>: u'20150212192705731783.note'}
[2015-02-12 22:27:44,275 - main_note.py:628] [INFO] <module>(): program end
[2015-02-12 22:29:23,640 - main_note.py:623] [INFO] <module>(): program start
[2015-02-12 22:29:23,958 - main_note.py:537] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:29:23,986 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:29:23,987 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:29:24,015 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:29:24,017 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:29:24,022 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:29:24,024 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:29:24,131 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:29:24,132 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:29:29,948 - main_note.py:493] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:29:29,949 - main_note.py:496] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x145a830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x145a8c0>: u'20150212192705731783.note'}
[2015-02-12 22:29:29,951 - main_note.py:629] [INFO] <module>(): program end
[2015-02-12 22:30:07,094 - main_note.py:623] [INFO] <module>(): program start
[2015-02-12 22:30:07,334 - main_note.py:537] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:30:07,365 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:30:07,366 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:30:07,483 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:30:07,495 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:30:07,511 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:30:07,512 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:30:07,574 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:30:07,574 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:30:11,092 - main_note.py:493] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:30:11,092 - main_note.py:496] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1ffa8c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1ffa950>: u'20150212192705731783.note'}
[2015-02-12 22:30:11,096 - main_note.py:629] [INFO] <module>(): program end
[2015-02-12 22:31:24,237 - main_note.py:623] [INFO] <module>(): program start
[2015-02-12 22:31:24,501 - main_note.py:537] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:31:24,527 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:24,528 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:31:24,620 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:24,623 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:31:24,630 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:24,635 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:31:24,659 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:24,659 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:31:31,896 - main_note.py:493] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:31:31,897 - main_note.py:496] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x15b0830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x15b08c0>: u'20150212192705731783.note'}
[2015-02-12 22:31:31,902 - main_note.py:629] [INFO] <module>(): program end
[2015-02-12 22:31:50,419 - main_note.py:623] [INFO] <module>(): program start
[2015-02-12 22:31:50,635 - main_note.py:537] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:31:50,661 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:50,662 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:31:50,734 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:50,735 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:31:50,740 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:50,741 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:31:50,846 - main_note.py:192] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:31:50,847 - main_note.py:196] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:32:04,499 - main_note.py:493] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:32:04,500 - main_note.py:496] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2745830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x27458c0>: u'20150212192705731783.note'}
[2015-02-12 22:32:04,503 - main_note.py:629] [INFO] <module>(): program end
[2015-02-12 22:34:29,829 - main_note.py:625] [INFO] <module>(): program start
[2015-02-12 22:34:30,146 - main_note.py:539] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:34:30,201 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:30,201 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:30,275 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:30,276 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:34:30,279 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:30,280 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:30,316 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:30,316 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:34:33,828 - main_note.py:495] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:34:33,829 - main_note.py:498] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2a568c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x2a56950>: u'20150212192705731783.note'}
[2015-02-12 22:34:33,833 - main_note.py:631] [INFO] <module>(): program end
[2015-02-12 22:34:41,543 - main_note.py:625] [INFO] <module>(): program start
[2015-02-12 22:34:41,796 - main_note.py:539] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:34:41,826 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:41,827 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:41,893 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:41,893 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:34:41,897 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:41,898 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:41,945 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:41,945 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:34:45,631 - main_note.py:495] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:34:45,632 - main_note.py:498] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1e878c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1e87950>: u'20150212192705731783.note'}
[2015-02-12 22:34:45,635 - main_note.py:631] [INFO] <module>(): program end
[2015-02-12 22:34:52,137 - main_note.py:625] [INFO] <module>(): program start
[2015-02-12 22:34:52,385 - main_note.py:539] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-12 22:34:52,413 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:52,413 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:52,525 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:52,526 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-12 22:34:52,531 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:52,531 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-12 22:34:52,619 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-12 22:34:52,621 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-12 22:35:07,029 - main_note.py:495] [DEBUG] saveAll(): saveAllNotes
[2015-02-12 22:35:07,030 - main_note.py:498] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x13c08c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x13c0950>: u'20150212192705731783.note'}
[2015-02-12 22:35:07,033 - main_note.py:631] [INFO] <module>(): program end
[2015-02-13 08:57:38,620 - main_note.py:625] [INFO] <module>(): program start
[2015-02-13 08:57:38,943 - main_note.py:539] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 08:57:38,988 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:57:38,994 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 08:57:39,048 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:57:39,049 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfd
[2015-02-13 08:57:39,055 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:57:39,056 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 08:57:39,085 - main_note.py:194] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:57:39,086 - main_note.py:198] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 08:57:53,727 - main_note.py:495] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 08:57:53,728 - main_note.py:498] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1bb68c0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1bb6950>: u'20150212192705731783.note'}
[2015-02-13 08:57:53,730 - main_note.py:631] [INFO] <module>(): program end
[2015-02-13 08:59:01,135 - main_note.py:609] [INFO] <module>(): program start
[2015-02-13 08:59:01,423 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 08:59:01,443 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:59:01,443 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 08:59:01,515 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:59:01,515 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfdfsdf
[2015-02-13 08:59:01,519 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:59:01,520 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 08:59:01,589 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 08:59:01,590 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 09:01:05,651 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:01:05,652 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1363830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x13638c0>: u'20150212192705731783.note'}
[2015-02-13 09:01:05,655 - main_note.py:615] [INFO] <module>(): program end
[2015-02-13 09:02:00,639 - main_note.py:609] [INFO] <module>(): program start
[2015-02-13 09:02:01,519 - main_note.py:523] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 09:02:01,541 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:01,542 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:02:01,641 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:01,642 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfdfsdf
[2015-02-13 09:02:01,646 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:01,647 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:02:01,732 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:01,732 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 09:02:19,225 - main_note.py:479] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:02:19,226 - main_note.py:482] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xdc3830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xdc38c0>: u'20150212192705731783.note'}
[2015-02-13 09:02:19,257 - main_note.py:615] [INFO] <module>(): program end
[2015-02-13 09:02:38,491 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:02:38,783 - main_note.py:518] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 09:02:38,805 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:38,805 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:02:38,926 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:38,927 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfdfsdf
[2015-02-13 09:02:38,932 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:38,933 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:02:38,958 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:02:38,964 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 09:03:20,035 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:03:20,036 - main_note.py:477] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x18477a0>: u'20150212192707751136.note', <__main__.NoteWindow object at 0x1847830>: u'20150212192705731783.note'}
[2015-02-13 09:03:20,038 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:09:29,783 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:09:31,192 - main_note.py:518] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 09:09:31,937 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:31,948 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:09:32,020 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:32,021 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfdfsdf
[2015-02-13 09:09:32,067 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:32,067 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:09:32,206 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:32,210 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 09:09:40,461 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:09:40,462 - main_note.py:477] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xfa5830>: u'20150212192707751136.note', <__main__.NoteWindow object at 0xfa58c0>: u'20150212192705731783.note'}
[2015-02-13 09:09:40,465 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:09:57,422 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:09:57,906 - main_note.py:518] [DEBUG] createWindowFromFileList(): ['20150212192705731783.note', '20150212192707751136.note']
[2015-02-13 09:09:57,929 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:57,930 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:09:58,005 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:58,007 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: fsdffdsafsadfdsafasdfasfdfsdf
[2015-02-13 09:09:58,013 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:58,021 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:09:58,078 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:09:58,078 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content: asfdfasfdasfasfdsdffsdaf
[2015-02-13 09:10:02,159 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:10:04,408 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:10:04,409 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:10:04,990 - main_note.py:194] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:10:05,793 - main_note.py:194] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:10:06,802 - main_note.py:246] [DEBUG] setWhite(): setWhite
[2015-02-13 09:10:10,583 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:10:15,708 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:10:15,778 - main_note.py:559] [DEBUG] closeWindow(): should exit program
[2015-02-13 09:10:15,791 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:10:15,791 - main_note.py:477] [DEBUG] saveAll(): {}
[2015-02-13 09:10:15,792 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:27:34,906 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:27:37,041 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:27:37,042 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:27:41,385 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:27:41,560 - main_note.py:559] [DEBUG] closeWindow(): should exit program
[2015-02-13 09:27:41,561 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:27:41,562 - main_note.py:477] [DEBUG] saveAll(): {}
[2015-02-13 09:27:41,583 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:27:44,001 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:27:44,385 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:27:44,391 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:27:45,584 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:27:45,585 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:27:54,986 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:04,366 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:04,374 - main_note.py:559] [DEBUG] closeWindow(): should exit program
[2015-02-13 09:28:04,375 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:28:04,376 - main_note.py:477] [DEBUG] saveAll(): {}
[2015-02-13 09:28:04,376 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:28:06,530 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:28:06,727 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:06,727 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:08,151 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:08,152 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:08,471 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:08,472 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:08,664 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:08,665 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:08,839 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:08,839 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:08,991 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:08,993 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:09,151 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:28:09,152 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:28:12,121 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:13,976 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:16,282 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:19,305 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:22,320 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:24,984 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:29,954 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:28:29,962 - main_note.py:559] [DEBUG] closeWindow(): should exit program
[2015-02-13 09:28:29,963 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:28:29,963 - main_note.py:477] [DEBUG] saveAll(): {}
[2015-02-13 09:28:29,964 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:29:17,393 - main_note.py:604] [INFO] <module>(): program start
[2015-02-13 09:29:17,600 - main_note.py:178] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:29:17,601 - main_note.py:182] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:29:29,263 - main_note.py:550] [DEBUG] closeWindow(): closeWindow
[2015-02-13 09:29:29,272 - main_note.py:559] [DEBUG] closeWindow(): should exit program
[2015-02-13 09:29:29,274 - main_note.py:474] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:29:29,274 - main_note.py:477] [DEBUG] saveAll(): {}
[2015-02-13 09:29:29,275 - main_note.py:610] [INFO] <module>(): program end
[2015-02-13 09:33:45,309 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:33:45,929 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:33:45,930 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:33:48,403 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:33:49,467 - main_note.py:264] [DEBUG] setYellow(): setYellow
[2015-02-13 09:33:50,163 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:33:52,502 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:34:36,698 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:34:36,699 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x24057a0>: '20150213093345899321.note'}
[2015-02-13 09:34:36,749 - main_note.py:614] [INFO] <module>(): program end
[2015-02-13 09:34:56,530 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:34:56,853 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:34:56,890 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:34:56,891 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:34:56,958 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:34:56,960 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:35:05,414 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:35:05,415 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2778830>: u'20150213093345899321.note'}
[2015-02-13 09:35:05,416 - main_note.py:614] [INFO] <module>(): program end
[2015-02-13 09:35:07,542 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:35:07,722 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:35:07,743 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:35:07,744 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:35:07,811 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:35:07,813 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:35:15,561 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:35:15,562 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1813830>: u'20150213093345899321.note'}
[2015-02-13 09:35:15,563 - main_note.py:614] [INFO] <module>(): program end
[2015-02-13 09:37:51,793 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:37:51,994 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:38:25,051 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:38:25,305 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:38:25,329 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:38:25,332 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:38:25,395 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:38:25,395 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:38:32,683 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:38:32,683 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x14518c0>: u'20150213093345899321.note'}
[2015-02-13 09:38:32,685 - main_note.py:614] [INFO] <module>(): program end
[2015-02-13 09:38:34,145 - main_note.py:608] [INFO] <module>(): program start
[2015-02-13 09:38:34,319 - main_note.py:522] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:38:34,339 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:38:34,340 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:38:34,403 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:38:34,405 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:39:32,114 - main_note.py:478] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:39:32,114 - main_note.py:481] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2ba78c0>: u'20150213093345899321.note'}
[2015-02-13 09:39:32,116 - main_note.py:614] [INFO] <module>(): program end
[2015-02-13 09:39:34,188 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:39:34,390 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:39:34,412 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:39:34,412 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:39:34,475 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:39:34,476 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:39:40,082 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:39:40,083 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xed1830>: u'20150213093345899321.note'}
[2015-02-13 09:39:40,084 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:42:14,854 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:42:15,045 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:42:15,068 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:42:15,068 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:42:15,135 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:42:15,136 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:46:04,340 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:46:04,340 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1040830>: u'20150213093345899321.note'}
[2015-02-13 09:46:04,343 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:46:05,871 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:46:06,071 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:46:06,093 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:46:06,094 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:46:06,160 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:46:06,160 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:48:43,160 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:48:43,161 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xfb9830>: u'20150213093345899321.note'}
[2015-02-13 09:48:43,163 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:49:18,417 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:49:18,638 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:49:18,662 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:49:18,663 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:49:18,759 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:49:18,760 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:50:13,071 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:50:15,406 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:53:34,276 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:53:34,277 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x17a1830>: u'20150213093345899321.note'}
[2015-02-13 09:53:34,280 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:53:35,741 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:53:35,970 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:53:36,006 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:53:36,006 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:53:36,112 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 09:53:36,113 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,114 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,115 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,116 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,117 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:36,118 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:36,119 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,120 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,124 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,125 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,126 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,128 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,129 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,130 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,131 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,132 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,133 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,135 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,136 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,138 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:36,139 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:36,140 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:36,141 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,142 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,143 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,144 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,145 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,146 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,148 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,149 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,150 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,151 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:36,152 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 09:53:54,401 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:53:54,402 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x13a2830>: u'20150213093345899321.note'}
[2015-02-13 09:53:54,403 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:53:56,193 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:53:56,385 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:53:56,414 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:53:56,414 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:53:56,556 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 09:53:56,557 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,560 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,564 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,566 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,567 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:56,569 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:56,570 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,571 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,572 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,573 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,577 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,578 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,581 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,582 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,583 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,584 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,586 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,587 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,592 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,594 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:53:56,595 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:56,597 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:53:56,598 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,600 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,602 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,603 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,604 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,605 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,607 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,608 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,609 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,610 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:53:56,612 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 09:54:00,531 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:54:00,532 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1001830>: u'20150213093345899321.note'}
[2015-02-13 09:54:00,534 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:54:29,672 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:54:29,841 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:54:29,861 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:54:29,861 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:54:29,898 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 09:54:29,899 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,901 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,903 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,904 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,906 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:54:29,908 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:54:29,909 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,910 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,911 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,912 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,913 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,914 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,915 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,916 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,921 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,931 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,932 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,934 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,938 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,942 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:54:29,943 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:54:29,944 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:54:29,949 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,950 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,953 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,963 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,965 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,966 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,967 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,968 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,968 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,977 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:54:29,979 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 09:54:41,765 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:54:41,766 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x25ec830>: u'20150213093345899321.note'}
[2015-02-13 09:54:41,769 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:54:44,172 - main_note.py:605] [INFO] <module>(): program start
[2015-02-13 09:54:44,395 - main_note.py:519] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:55:02,613 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:55:02,796 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:55:02,817 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:55:02,818 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:55:02,921 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 09:55:02,925 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,927 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,928 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,929 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,930 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:02,931 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:02,932 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,933 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,934 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,935 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,936 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,943 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,944 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,945 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,953 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,956 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,958 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,964 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,966 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,970 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:02,971 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:02,975 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:02,979 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,985 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,987 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,992 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,997 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:02,999 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:03,000 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:03,002 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:03,004 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:03,005 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:03,007 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 09:55:32,179 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 09:55:32,180 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2696830>: u'20150213093345899321.note'}
[2015-02-13 09:55:32,182 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 09:55:35,909 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 09:55:36,114 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 09:55:36,137 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:55:36,138 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 09:55:36,290 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 09:55:36,302 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,304 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,305 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,306 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,308 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:36,310 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:36,312 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,314 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,315 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,317 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,319 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,321 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,322 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,324 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,336 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,341 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,349 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,356 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,358 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,361 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 09:55:36,366 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:36,370 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 09:55:36,377 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,378 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,380 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,381 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,382 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,383 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,383 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,384 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,386 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,387 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 09:55:36,388 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 09:57:03,885 - main_note.py:198] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 09:57:05,047 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 09:57:05,048 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:00:19,434 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:00:19,435 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x29dc710>: '20150213095705043779.note', <__main__.NoteWindow object at 0x29dc7a0>: u'20150213093345899321.note'}
[2015-02-13 10:00:19,437 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 10:00:22,041 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 10:00:22,280 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:00:29,916 - main_note.py:607] [INFO] <module>(): program start
[2015-02-13 10:00:30,088 - main_note.py:521] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:00:30,109 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:00:30,110 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:00:30,212 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 10:00:30,213 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,215 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,216 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,218 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,219 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:00:30,220 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:00:30,221 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,222 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,223 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,224 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,226 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,227 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,228 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,229 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,230 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,231 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,233 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,234 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,235 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,236 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:00:30,237 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:00:30,238 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:00:30,244 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,245 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,246 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,247 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,251 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,252 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,253 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,255 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,256 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,257 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:00:30,258 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 10:00:30,262 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:00:30,263 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:00:30,284 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:00:30,285 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:05:40,296 - main_note.py:477] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:05:40,296 - main_note.py:480] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x10c7710>: u'20150213095705043779.note', <__main__.NoteWindow object at 0x10c77a0>: u'20150213093345899321.note'}
[2015-02-13 10:05:40,299 - main_note.py:613] [INFO] <module>(): program end
[2015-02-13 10:05:42,244 - main_note.py:611] [INFO] <module>(): program start
[2015-02-13 10:05:42,468 - main_note.py:525] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:05:51,208 - main_note.py:611] [INFO] <module>(): program start
[2015-02-13 10:05:51,386 - main_note.py:525] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:05:51,425 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:05:51,425 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:05:51,529 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 10:05:51,529 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,530 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,532 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,533 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,542 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:05:51,543 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:05:51,545 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,546 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,548 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,549 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,550 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,552 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,553 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,554 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,555 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,556 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,557 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,559 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,560 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,561 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:05:51,562 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:05:51,564 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:05:51,565 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,566 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,567 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,570 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,571 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,572 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,573 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,574 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,576 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,577 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:05:51,578 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 10:05:51,582 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:05:51,583 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:05:51,639 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:05:51,639 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:06:09,558 - main_note.py:481] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:06:09,559 - main_note.py:484] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1d7a710>: u'20150213095705043779.note', <__main__.NoteWindow object at 0x1d7a7a0>: u'20150213093345899321.note'}
[2015-02-13 10:06:09,562 - main_note.py:617] [INFO] <module>(): program end
[2015-02-13 10:06:35,694 - main_note.py:606] [INFO] <module>(): program start
[2015-02-13 10:06:35,920 - main_note.py:520] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:06:35,949 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:06:35,951 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:06:36,080 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 33
[2015-02-13 10:06:36,081 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,082 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 1 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,084 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 2 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,085 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 3 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,087 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 4 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:06:36,089 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:06:36,090 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,091 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,093 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,095 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,096 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,097 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,097 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,099 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,100 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,101 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,102 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,106 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,108 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,110 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:06:36,111 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:06:36,112 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:06:36,113 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,114 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,115 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,116 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,117 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,118 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,120 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,121 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,122 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,123 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:06:36,124 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 10:06:36,136 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:06:36,136 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:06:36,159 - main_note.py:182] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:06:36,160 - main_note.py:186] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:11:52,157 - main_note.py:476] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:11:52,168 - main_note.py:479] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1a71710>: u'20150213095705043779.note', <__main__.NoteWindow object at 0x1a717a0>: u'20150213093345899321.note'}
[2015-02-13 10:11:52,172 - main_note.py:612] [INFO] <module>(): program end
[2015-02-13 10:12:53,756 - main_note.py:606] [INFO] <module>(): program start
[2015-02-13 10:12:53,963 - main_note.py:520] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:14:10,964 - main_note.py:606] [INFO] <module>(): program start
[2015-02-13 10:14:11,150 - main_note.py:520] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note', '20150213095705043779.note']
[2015-02-13 10:14:11,173 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:14:11,173 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:14:11,291 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 36
[2015-02-13 10:14:11,292 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,294 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 1 content: self.le
[2015-02-13 10:14:11,295 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 2 content:
[2015-02-13 10:14:11,296 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 3 content:
[2015-02-13 10:14:11,297 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 4 content: ft 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,298 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,299 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,300 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:14:11,302 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:14:11,303 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,304 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,305 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,306 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,308 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,315 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,323 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,327 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,329 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,333 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,337 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,338 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,339 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,340 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:14:11,343 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:14:11,345 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:14:11,346 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,347 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,348 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,350 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,351 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,353 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,354 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,355 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,356 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 33 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,358 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 34 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:14:11,359 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 35 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 10:14:11,364 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:14:11,364 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:14:11,448 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:14:11,448 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:14:30,120 - main_note.py:552] [DEBUG] closeWindow(): closeWindow
[2015-02-13 10:15:17,839 - main_note.py:476] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:15:17,839 - main_note.py:479] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1c1c7a0>: u'20150213093345899321.note'}
[2015-02-13 10:15:17,842 - main_note.py:612] [INFO] <module>(): program end
[2015-02-13 10:16:38,996 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:16:39,182 - main_note.py:572] [DEBUG] createWindowFromFileList(): ['20150213093345899321.note']
[2015-02-13 10:16:39,204 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:16:39,205 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:16:39,309 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 36
[2015-02-13 10:16:39,310 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content: .left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,312 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 1 content: self.le
[2015-02-13 10:16:39,312 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 2 content:
[2015-02-13 10:16:39,313 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 3 content:
[2015-02-13 10:16:39,314 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 4 content: ft 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,315 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 5 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,316 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 6 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,317 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 7 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:16:39,318 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 8 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:16:39,319 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 9 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,320 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 10 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,321 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 11 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,322 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 12 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,324 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 13 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,332 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 14 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,333 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 15 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,336 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 16 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,339 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 17 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,340 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 18 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,342 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 19 content: self.left 0, self.right 1, self.bottom 0, hor.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,343 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 20 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,350 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 21 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,359 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 22 content: self.left 1, self.right 0, self.bottom 1, hor 1,
[2015-02-13 10:16:39,360 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 23 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:16:39,362 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 24 content: self.left 0, self.right 1, self.bottom 0, hor 1,
[2015-02-13 10:16:39,363 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 25 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,364 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 26 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,366 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 27 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,371 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 28 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,373 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 29 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,374 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 30 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,375 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 31 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,376 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 32 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,378 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 33 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,379 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 34 content: self.left 0, self.right 1, self.bottom 1, hor 1,
[2015-02-13 10:16:39,380 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 35 content: self.left 0, self.right 1, self.bottom 0, hor
[2015-02-13 10:17:04,752 - main_note.py:604] [DEBUG] closeWindow(): closeWindow
[2015-02-13 10:17:04,833 - main_note.py:613] [DEBUG] closeWindow(): should exit program
[2015-02-13 10:17:04,838 - main_note.py:528] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:17:04,838 - main_note.py:531] [DEBUG] saveAll(): {}
[2015-02-13 10:17:04,839 - main_note.py:664] [INFO] <module>(): program end
[2015-02-13 10:18:46,592 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:18:47,064 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:18:47,065 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:19:59,031 - main_note.py:528] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:19:59,031 - main_note.py:531] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x20ef710>: '20150213101846988772.note'}
[2015-02-13 10:19:59,034 - main_note.py:664] [INFO] <module>(): program end
[2015-02-13 10:20:00,801 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:20:01,032 - main_note.py:572] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:20:01,065 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:20:01,066 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:20:01,204 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:20:01,210 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:20:48,268 - main_note.py:528] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:20:48,269 - main_note.py:531] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xdac7a0>: u'20150213101846988772.note'}
[2015-02-13 10:20:48,270 - main_note.py:664] [INFO] <module>(): program end
[2015-02-13 10:26:52,719 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:26:52,953 - main_note.py:572] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:27:01,492 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:27:01,752 - main_note.py:572] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:27:01,774 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:27:01,775 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:27:01,867 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:27:01,868 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:27:14,826 - main_note.py:528] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:27:14,826 - main_note.py:531] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xe137a0>: u'20150213101846988772.note'}
[2015-02-13 10:27:14,828 - main_note.py:664] [INFO] <module>(): program end
[2015-02-13 10:37:25,710 - main_note.py:659] [INFO] <module>(): program start
[2015-02-13 10:37:25,936 - main_note.py:573] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:37:25,966 - main_note.py:216] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:37:25,967 - main_note.py:220] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:37:26,034 - main_note.py:216] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:37:26,035 - main_note.py:220] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:37:57,961 - main_note.py:529] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:37:57,961 - main_note.py:532] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xff57a0>: u'20150213101846988772.note'}
[2015-02-13 10:37:57,963 - main_note.py:665] [INFO] <module>(): program end
[2015-02-13 10:41:15,164 - main_note.py:658] [INFO] <module>(): program start
[2015-02-13 10:41:15,360 - main_note.py:572] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:41:15,384 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:41:15,385 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:41:15,473 - main_note.py:215] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:41:15,474 - main_note.py:219] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:41:52,476 - main_note.py:528] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:41:52,476 - main_note.py:531] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x28357a0>: u'20150213101846988772.note'}
[2015-02-13 10:41:52,478 - main_note.py:664] [INFO] <module>(): program end
[2015-02-13 10:41:54,525 - main_note.py:606] [INFO] <module>(): program start
[2015-02-13 10:41:54,708 - main_note.py:520] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:41:54,749 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:41:54,750 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:41:54,961 - main_note.py:163] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:41:54,962 - main_note.py:167] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:46:14,611 - main_note.py:476] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:46:14,612 - main_note.py:479] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x22847a0>: u'20150213101846988772.note'}
[2015-02-13 10:46:14,614 - main_note.py:612] [INFO] <module>(): program end
[2015-02-13 10:47:28,863 - main_note.py:666] [INFO] <module>(): program start
[2015-02-13 10:47:29,087 - main_note.py:580] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:47:29,110 - main_note.py:223] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:47:29,111 - main_note.py:227] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:47:29,195 - main_note.py:223] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:47:29,195 - main_note.py:227] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:48:36,481 - main_note.py:536] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:48:36,482 - main_note.py:539] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1fc5830>: u'20150213101846988772.note'}
[2015-02-13 10:48:36,484 - main_note.py:672] [INFO] <module>(): program end
[2015-02-13 10:48:38,203 - main_note.py:669] [INFO] <module>(): program start
[2015-02-13 10:48:38,426 - main_note.py:583] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:48:38,449 - main_note.py:226] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:48:38,450 - main_note.py:230] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:48:38,555 - main_note.py:226] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:48:38,557 - main_note.py:230] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:49:05,522 - main_note.py:539] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:49:05,522 - main_note.py:542] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x199d830>: u'20150213101846988772.note'}
[2015-02-13 10:49:05,524 - main_note.py:675] [INFO] <module>(): program end
[2015-02-13 10:53:05,490 - main_note.py:674] [INFO] <module>(): program start
[2015-02-13 10:53:05,736 - main_note.py:588] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:53:05,761 - main_note.py:231] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:53:05,762 - main_note.py:235] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:53:05,874 - main_note.py:231] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:53:05,876 - main_note.py:235] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:53:21,514 - main_note.py:544] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:53:21,515 - main_note.py:547] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1f35830>: u'20150213101846988772.note'}
[2015-02-13 10:53:21,516 - main_note.py:680] [INFO] <module>(): program end
[2015-02-13 10:55:09,063 - main_note.py:674] [INFO] <module>(): program start
[2015-02-13 10:55:09,278 - main_note.py:588] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:55:09,301 - main_note.py:231] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:55:09,302 - main_note.py:235] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:55:09,428 - main_note.py:231] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:55:09,430 - main_note.py:235] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:55:15,809 - main_note.py:544] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:55:15,810 - main_note.py:547] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2754830>: u'20150213101846988772.note'}
[2015-02-13 10:55:15,813 - main_note.py:680] [INFO] <module>(): program end
[2015-02-13 10:55:25,457 - main_note.py:675] [INFO] <module>(): program start
[2015-02-13 10:55:25,637 - main_note.py:589] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:55:25,656 - main_note.py:232] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:55:25,656 - main_note.py:236] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:55:25,710 - main_note.py:232] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:55:25,711 - main_note.py:236] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:55:38,708 - main_note.py:545] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:55:38,709 - main_note.py:548] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1aef830>: u'20150213101846988772.note'}
[2015-02-13 10:55:38,710 - main_note.py:681] [INFO] <module>(): program end
[2015-02-13 10:56:29,904 - main_note.py:675] [INFO] <module>(): program start
[2015-02-13 10:56:30,114 - main_note.py:589] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:56:30,137 - main_note.py:232] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:56:30,138 - main_note.py:236] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:56:30,236 - main_note.py:232] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:56:30,236 - main_note.py:236] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:56:34,779 - main_note.py:248] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 10:56:36,980 - main_note.py:248] [DEBUG] contextMenuEvent(): contextMenuEvent
[2015-02-13 10:56:41,051 - main_note.py:545] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:56:41,051 - main_note.py:548] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1d64830>: u'20150213101846988772.note'}
[2015-02-13 10:56:41,053 - main_note.py:681] [INFO] <module>(): program end
[2015-02-13 10:57:49,229 - main_note.py:677] [INFO] <module>(): program start
[2015-02-13 10:57:49,445 - main_note.py:591] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:57:49,474 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:57:49,475 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:57:49,493 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:57:49,494 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:58:33,481 - main_note.py:547] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:58:33,482 - main_note.py:550] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1868830>: u'20150213101846988772.note'}
[2015-02-13 10:58:33,483 - main_note.py:683] [INFO] <module>(): program end
[2015-02-13 10:58:57,069 - main_note.py:677] [INFO] <module>(): program start
[2015-02-13 10:58:57,626 - main_note.py:591] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 10:58:57,690 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:58:57,691 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:58:57,733 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 10:58:57,735 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 10:59:29,016 - main_note.py:547] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 10:59:29,016 - main_note.py:550] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x21e9830>: u'20150213101846988772.note'}
[2015-02-13 10:59:29,018 - main_note.py:683] [INFO] <module>(): program end
[2015-02-13 11:01:02,040 - main_note.py:677] [INFO] <module>(): program start
[2015-02-13 11:01:02,434 - main_note.py:591] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:01:02,552 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:01:02,552 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:01:02,576 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:01:02,577 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:01:10,354 - main_note.py:547] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:01:10,355 - main_note.py:550] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1fa2830>: u'20150213101846988772.note'}
[2015-02-13 11:01:10,356 - main_note.py:683] [INFO] <module>(): program end
[2015-02-13 11:03:50,102 - main_note.py:678] [INFO] <module>(): program start
[2015-02-13 11:03:50,299 - main_note.py:592] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:03:50,322 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:03:50,323 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:03:50,390 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:03:50,391 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:04:37,053 - main_note.py:548] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:04:37,054 - main_note.py:551] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0xecf830>: u'20150213101846988772.note'}
[2015-02-13 11:04:37,056 - main_note.py:684] [INFO] <module>(): program end
[2015-02-13 11:05:34,027 - main_note.py:678] [INFO] <module>(): program start
[2015-02-13 11:05:34,229 - main_note.py:592] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:05:34,253 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:05:34,254 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:05:34,343 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:05:34,343 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:06:19,598 - main_note.py:548] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:06:19,599 - main_note.py:551] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1ee6830>: u'20150213101846988772.note'}
[2015-02-13 11:06:19,601 - main_note.py:684] [INFO] <module>(): program end
[2015-02-13 11:06:43,164 - main_note.py:678] [INFO] <module>(): program start
[2015-02-13 11:06:43,335 - main_note.py:592] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:06:43,356 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:06:43,356 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:06:43,422 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:06:43,422 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:08:03,968 - main_note.py:548] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:08:03,968 - main_note.py:551] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x13c6830>: u'20150213101846988772.note'}
[2015-02-13 11:08:03,970 - main_note.py:684] [INFO] <module>(): program end
[2015-02-13 11:08:05,669 - main_note.py:678] [INFO] <module>(): program start
[2015-02-13 11:08:05,857 - main_note.py:592] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:08:05,879 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:08:05,880 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:08:05,943 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:08:05,944 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:08:47,235 - main_note.py:548] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:08:47,236 - main_note.py:551] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1a18830>: u'20150213101846988772.note'}
[2015-02-13 11:08:47,237 - main_note.py:684] [INFO] <module>(): program end
[2015-02-13 11:09:03,473 - main_note.py:678] [INFO] <module>(): program start
[2015-02-13 11:09:03,665 - main_note.py:592] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:09:03,687 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:09:03,688 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:09:03,765 - main_note.py:234] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:09:03,765 - main_note.py:238] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:10:06,851 - main_note.py:548] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:10:06,851 - main_note.py:551] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x26cf830>: u'20150213101846988772.note'}
[2015-02-13 11:10:06,853 - main_note.py:684] [INFO] <module>(): program end
[2015-02-13 11:10:27,734 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:10:28,038 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:10:28,060 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:10:28,061 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:10:28,140 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:10:28,141 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:11:27,139 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:11:27,140 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x1ef2830>: u'20150213101846988772.note'}
[2015-02-13 11:11:27,142 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:11:29,723 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:11:29,925 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:11:29,948 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:11:29,948 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:11:30,021 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:11:30,022 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:11:39,715 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:11:39,715 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x12bb830>: u'20150213101846988772.note'}
[2015-02-13 11:11:39,717 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:12:09,603 - main_note.py:682] [INFO] <module>(): program start
[2015-02-13 11:12:10,372 - main_note.py:596] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:12:10,497 - main_note.py:238] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:12:10,497 - main_note.py:242] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:12:10,556 - main_note.py:238] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:12:10,557 - main_note.py:242] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:12:47,343 - main_note.py:552] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:12:47,343 - main_note.py:555] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x22a2830>: u'20150213101846988772.note'}
[2015-02-13 11:12:47,345 - main_note.py:688] [INFO] <module>(): program end
[2015-02-13 11:13:44,074 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:13:44,768 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:13:44,900 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:13:44,901 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:13:44,950 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:13:44,951 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:14:18,980 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:14:18,981 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x15b9830>: u'20150213101846988772.note'}
[2015-02-13 11:14:18,982 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:14:44,577 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:14:45,086 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:14:45,115 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:14:45,116 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:14:45,192 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:14:45,193 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:15:00,253 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:15:00,253 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x295e830>: u'20150213101846988772.note'}
[2015-02-13 11:15:00,255 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:15:25,545 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:15:25,745 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:15:25,781 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:15:25,781 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:15:25,869 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:15:25,870 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:15:39,067 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:15:39,067 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2a83830>: u'20150213101846988772.note'}
[2015-02-13 11:15:39,069 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:15:44,481 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:15:44,652 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:15:44,672 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:15:44,673 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:15:44,748 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:15:44,760 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:17:12,416 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:17:12,417 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x16c4830>: u'20150213101846988772.note'}
[2015-02-13 11:17:12,419 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:17:13,928 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:17:14,138 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:17:14,161 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:17:14,162 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:17:14,226 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:17:14,226 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:17:31,634 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:17:31,634 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x2751830>: u'20150213101846988772.note'}
[2015-02-13 11:17:31,635 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:17:42,532 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:17:42,813 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:17:42,838 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:17:42,839 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:17:42,927 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:17:42,929 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:17:50,045 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:17:50,046 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x14aa830>: u'20150213101846988772.note'}
[2015-02-13 11:17:50,047 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:18:01,684 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:18:01,889 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:18:01,913 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:18:01,914 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:18:02,003 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:18:02,004 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:19:18,269 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:19:18,270 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x13b2830>: u'20150213101846988772.note'}
[2015-02-13 11:19:18,271 - main_note.py:687] [INFO] <module>(): program end
[2015-02-13 11:19:19,886 - main_note.py:681] [INFO] <module>(): program start
[2015-02-13 11:19:20,062 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-13 11:19:20,085 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:19:20,085 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:19:20,162 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-13 11:19:20,163 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-13 11:19:26,916 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-13 11:19:26,917 - main_note.py:554] [DEBUG] saveAll(): {<__main__.NoteWindow object at 0x107d7a0>: u'20150213101846988772.note'}
[2015-02-13 11:19:26,918 - main_note.py:687] [INFO] <module>(): program end
[2015-02-15 14:36:40,523 - main_note.py:681] [INFO] <module>(): program start
[2015-02-15 14:36:42,230 - main_note.py:595] [DEBUG] createWindowFromFileList(): ['20150213101846988772.note']
[2015-02-15 14:36:42,825 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-15 14:36:42,826 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-15 14:36:42,890 - main_note.py:237] [DEBUG] setLineHeight(): blockCount: 1
[2015-02-15 14:36:42,894 - main_note.py:241] [DEBUG] setLineHeight(): blockNum: 0 content:
[2015-02-15 14:37:16,815 - main_note.py:627] [DEBUG] closeWindow(): closeWindow
[2015-02-15 14:37:16,899 - main_note.py:636] [DEBUG] closeWindow(): should exit program
[2015-02-15 14:37:16,908 - main_note.py:551] [DEBUG] saveAll(): saveAllNotes
[2015-02-15 14:37:16,909 - main_note.py:554] [DEBUG] saveAll(): {}
[2015-02-15 14:37:16,927 - main_note.py:687] [INFO] <module>(): program end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/DrWindays/PyNote.git
git@gitee.com:DrWindays/PyNote.git
DrWindays
PyNote
PyNote
master

搜索帮助