Custom Query (2447 matches)
Results (424 - 426 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#850 | Fixed | Clickable URL in 'Comments' field (Details tab) | ||
#3604 | Fixed | Fix log level tweaks from logging.conf | ||
Description |
When you set a config directory path (-c) on the command line, and only when, a file named logging.conf is read to set fine grained log levels. This allows to have per module/plugin log levels. The file is parsed and the log levels are set in the deluge.log.tweak_logging_levels. This function set the appropriate logger to the desired level. Despite the log level is changed, log levels less than ERROR are still not logged. The reason is that the log level check is done twice, in the logging.Logger class and in the logging.Handler class. Fix proposed: https://github.com/deluge-torrent/deluge/pull/428 |
|||
#893 | Fixed | metafile.py: misplaced ) | ||
Description |
If metafile.py at arounde line 135 a exception gets raised if the filename can't be correctly encoded. The code reads as raise Exception('foo') % (bar1, bar2) wheres it should read raise Exception('foo' % (bar1, bar2)) The attached patch fixes this. |