- 11 Dec, 2012 12 commits
-
-
Marcin Siodelski authored
-
Marcin Siodelski authored
Some of the unit tests had to be modified after this change. This is because they used to create options which data length did not match the actual std options' formats.
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Marcin Siodelski authored
... as this class is going to be used either for V6 or V4 now.
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Jelte Jansen authored
This reverts commit 3f9c7bb8.
-
Mukund Sivaraman authored
This issue was detected post-merge, and seems to have been introduced by commit 86ed7ae9 in master.
-
- 10 Dec, 2012 20 commits
-
-
Jelte Jansen authored
This has a chance that some log messages get lost (DEBUG messages during startup in case -v is not given but the config has DEBUG set)
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
JINMEI Tatuya authored
this will suppress a cppcheck error: http://git.bind10.isc.org/~tester/builder//BIND10-cppcheck/20121209143001-FreeBSD8-amd64-GCC/logs/cppcheck.out okayed on jabber.
-
Marcin Siodelski authored
-
JINMEI Tatuya authored
by encapsulating the appender in SharedAppenderPtr immediately after the creation, we can make sure buffer_appender1 won't leak even if the creation of the second appender fails.
-
JINMEI Tatuya authored
-
Marcin Siodelski authored
-
Marcin Siodelski authored
-
Jelte Jansen authored
- renamed test class - added a subclass of BufferAppender to directly test append() (and re-enabled the relevant test case) - minor doxy updates
-
Jelte Jansen authored
-
Jelte Jansen authored
-
Jelte Jansen authored
And use those in the case of flushStdout() upon destruction
-
Jelte Jansen authored
Since LogBuffer no longer exists, the file name did not match its content anymore
-
Jelte Jansen authored
and pull its functionality into BufferAppender (one unit test temporarily disabled, might be removed in next commit or updated to get around the protected method it uses)
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
Mukund Sivaraman authored
-
- 09 Dec, 2012 1 commit
-
-
Mukund Sivaraman authored
-
- 07 Dec, 2012 7 commits
-
-
Stephen Morris authored
cppcheck was complaining about what was effectively: const int A = 6; const int B = A; std::string array[b]; Changing this to const int B = 6; std::string array[b]; ... works
-
Jelte Jansen authored
-
Stephen Morris authored
This reflects the fact that at the moment, the data is stored in memory and not in a backing file.
-
Stephen Morris authored
-
Jelte Jansen authored
LogBuffers are now members of BufferAppender instances, and the singleton has been removed. LoggerManagerImpl keeps them (if any) around while processing a new specification, and flushes them when done.
-
Jelte Jansen authored
- update README - copy vector of event on flush - only use very basic functions in case of flush-on-destruct
-
Jelte Jansen authored
To prevent accidental outside use, all LogBugger (and BufferAppender) code is in the namespace isc::log::internal now, and the files have been renamed to _impl
-