Quassel Logging » History » Version 1
Gentle, 03/14/2009 10:50 PM
1 | 1 | Gentle | h1. Quassel Logging |
---|---|---|---|
2 | 1 | Gentle | |
3 | 1 | Gentle | Quassel saves all logs into the database, it never forgets backlogs unless you delete a buffer. You can either scroll back in chat windows as far as you like, or you can use a tool to dump or view the logs in plaintext format. |
4 | 1 | Gentle | |
5 | 1 | Gentle | h2. Tools |
6 | 1 | Gentle | |
7 | 1 | Gentle | h3. dumplog |
8 | 1 | Gentle | |
9 | 1 | Gentle | this tool (written in Python) dumps quassel logs to a file. Currently it exports mIRC format. |
10 | 1 | Gentle | You can get it at |
11 | 1 | Gentle | |
12 | 1 | Gentle | > http://tier.schokokeks.org/quassel/dumplog-0.0.1.tar.bz2 |
13 | 1 | Gentle | |
14 | 1 | Gentle | it is rather self-explanatory, telling you if something went wrong. you can run it with |
15 | 1 | Gentle | |
16 | 1 | Gentle | *default database path (ok for most unixes)* |
17 | 1 | Gentle | <pre>python dumplog.py -u username -n network -c "#channel" -o channel.log</pre> |
18 | 1 | Gentle | |
19 | 1 | Gentle | *custom database path (Windows etc.)* |
20 | 1 | Gentle | <pre>python dumplog.py -d "C:\Quassel/quassel-storage.sqlite"</pre> |
21 | 1 | Gentle | |
22 | 1 | Gentle | **Examples:** |
23 | 1 | Gentle | >*show users in quasseldb* |
24 | 1 | Gentle | ><pre>python dumplog.py</pre> |
25 | 1 | Gentle | > |
26 | 1 | Gentle | >*show networks for quassel user john* |
27 | 1 | Gentle | ><pre>python dumplog.py -u john</pre> |
28 | 1 | Gentle | > |
29 | 1 | Gentle | >*show channels for network Freenode for user john* |
30 | 1 | Gentle | ><pre>python dumplog.py -u john -n Freenode</pre> |
31 | 1 | Gentle | > |
32 | 1 | Gentle | >*dump channel #quassel on network Freenode for user john to file quassel.log* |
33 | 1 | Gentle | ><pre>python dumplog.py -u john -n Freenode -c "#quassel" -o quassel.log</pre> |
34 | 1 | Gentle | |
35 | 1 | Gentle | *Note* |
36 | 1 | Gentle | this tool is not maintained by quassel staff, contact Gentle on Freenode for bugs or feature requests |