Skip to content

Commit

Permalink
Doxygen correction - logServerStart(void) was listing a heap of extra…
Browse files Browse the repository at this point in the history
… args.

A few of these seem to have come from before the log split, but I'm
guessing the rest are a wish list, so have prepended them with a TODO.
  • Loading branch information
NigelPearson committed Mar 28, 2013
1 parent dbeff72 commit aceb356
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/libs/libmythbase/loggingserver.cpp
Expand Up @@ -938,6 +938,9 @@ void LogServerThread::stop(void)


/// \brief Entry point to start logging for the application. This will /// \brief Entry point to start logging for the application. This will
/// start up all of the threads needed. /// start up all of the threads needed.
/// \return TRUE on success, FALSE on failure
///
/// \todo Implement the following parameters to customise behaviour?...
/// \param logfile Filename of the logfile to create. Empty if no file. /// \param logfile Filename of the logfile to create. Empty if no file.
/// \param progress non-zero if progress output will be sent to the console. /// \param progress non-zero if progress output will be sent to the console.
/// This squelches all messages less important than LOG_ERR /// This squelches all messages less important than LOG_ERR
Expand All @@ -948,7 +951,6 @@ void LogServerThread::stop(void)
/// \param dblog true if database logging is requested /// \param dblog true if database logging is requested
/// \param propagate true if the logfile path needs to be propagated to child /// \param propagate true if the logfile path needs to be propagated to child
/// processes. /// processes.
/// \return TRUE on success, FALSE on failure
bool logServerStart(void) bool logServerStart(void)
{ {
if (logServerThread && logServerThread->isRunning()) if (logServerThread && logServerThread->isRunning())
Expand Down

0 comments on commit aceb356

Please sign in to comment.