aboutsummaryrefslogtreecommitdiff
path: root/src/common/torlog.h
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-05-23
|\ | | | | | | | | | | Conflicts: src/common/Makefile.am src/or/control.c
| * Fix some commentsRobert Ransom2011-05-20
| |
* | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-03-16
|\| | | | | | | | | | | | | Trivial Conflicts in src/common/crypto.c src/or/main.h src/or/or.h
| * Doxygen documentation for about 100 things that didn't have anyNick Mathewson2011-03-16
| | | | | | | | About 860 doxygen-less things remain in 0.2.2
| * Fix up all doxygen warnings other than "foo is not documented"Nick Mathewson2011-03-16
| |
* | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2011-02-22
|\|
| * Add a torrc option to report log domainsNick Mathewson2011-01-25
| |
* | Initial heartbeat subsystem commit.Sebastian Hahn2011-02-22
| | | | | | | | | | | | | | | | | | | | | | | | | | Sets: * Documentation * Logging domain * Configuration option * Scheduled event * Makefile It also creates status.c and the log_heartbeat() function. All code was written by Sebastian Hahn. Commit message was written by me (George Kadianakis).
* | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2011-01-03
|\|
| * Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson2011-01-03
| | | | | | | | | | | | Conflicts: src/common/test.h src/or/test.c
* | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2010-12-21
|\|
| * Better fix for 2190: defer libevent->controller messages instead of droppingNick Mathewson2010-11-19
| |
| * Do not send Libevent log messages to a controller.Nick Mathewson2010-11-19
| | | | | | | | | | | | | | | | | | | | Doing so could make Libevent call Libevent from inside a Libevent logging call, which is a recipe for reentrant confusion and hard-to-debug crashes. This would especially hurt if Libevent debug-level logging is enabled AND the user has a controller watching for low-severity log messages. Fix bug 2190; fix on 0.1.0.2-rc.
* | Make logging resolution configurable.Karsten Loesing2010-10-04
|/ | | | Implements enhancement 1668.
* Rename log.h to torlog.hNick Mathewson2010-07-09
This should make us conflict less with system files named "log.h". Yes, we shouldn't have been conflicting with those anyway, but some people's compilers act very oddly. The actual change was done with one "git mv", by editing Makefile.am, and running find . -name '*.[ch]' | xargs perl -i -pe 'if (/^#include.*\Wlog.h/) {s/log.h/torlog.h/; }'