Changes between Initial Version and Version 1 of BugReporting


Ignore:
Timestamp:
Feb 14, 2007, 11:16:53 PM (17 years ago)
Author:
Radek Bartoň
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BugReporting

    v1 v1  
     1= How to Report Bugs =
     2
     3If you'll find a bug in any plugin and you'd like to get know to author, you should collect some usefull information before making a [http://trac-hacks.org/newticket new ticket]. You can use this link where you correctly fill in "Component" and "Assigned To" fileds to make a ticket but better is to use direct links at plugins' home pages.
     4
     5== Describing Bug ==
     6
     7First of all you should find out how  your bug can be evoked. Sometimes it's obvious but sometimes is needs special succesion of steps and specific system configuration. However write a few sentences about that could help a lot anytime. If you'll not manage to evoke your bug once more make a ticket anyway but make a note about that.
     8
     9== Collecting Debug Messages ==
     10
     11Plugins should use debug messages logged to file to help determining where is a problem where it occurs. If your bug is not only functional one but it's provided by error message or traceback, you should collect debug messages too. There is two ways how to enable logging on debug level.
     12
     13First, the hard one, is described [http://trac.edgewall.org/wiki/TracLogging here]. For our purposes it is needed to set these variables in trac.ini configuration file:
     14
     15{{{
     16[logging]
     17log_type = file
     18log_level = DEBUG
     19}}}
     20
     21The second one is easier but you have to have had WebAdminPlugin installed. Just go to "Admin" section and "Logging" page and set there "Type" field to "file" and "Log level" field to "DEBUG".
     22
     23You will probably need to restart your web server after changing that in both cases. Then evoke your bug again go to "<trac_environment_path>/log/" folder and open log file named trac.log (by default). There collect any relevant lines near error message that you think that are relevant or few tens if you are not sure about that and post them to ticket. Don't forget to enclose these lines in triple brackets (!{{{ }}}).
     24
     25== Describing Your System ==
     26
     27Many bugs are platform dependend so you should sumarize your system information in the begining of ticket. Relevant is your exact Trac version (0.10.3, SVN trunk r3500, ...), web server you are running trac at (Apache+CGI, Apache+mod_python, tracd, ...), database backend (sqlite, PostgreSQL, MySQL, ...), database bindings (pysqlite, ...), operating system (Windows, Linux, MacOS, ...) and of course plugin's version. Example of that info could look like here:
     28
     29{{{
     30DiscussionPlugin: 0.10 (r1941)
     31Trac: 0.10.3 ubuntu package
     32Server: Apache 2.0.59 + mod_python 3.2.10
     33Database: sqlite 3.3.5 + pysqlite 2.3.1
     34OS: Linux
     35}}}
     36
     37== Sumary ==
     38
     39Not all information is needed in all cases but if you are not sure it's better to put it all in the ticket. If you'll stick with that, developers would love you :-).