diff options
author | Josh Blum <josh@joshknows.com> | 2011-05-04 15:27:11 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-05-04 15:27:11 -0700 |
commit | c8dca30d72eb733d154ab9dd193631c42b8e4788 (patch) | |
tree | ded51d25f2cbdd319e28f9af906620d7efc412ff /host/include | |
parent | 94399062713a76a42f269a7ed4d3737ecd6ed5cf (diff) | |
download | uhd-c8dca30d72eb733d154ab9dd193631c42b8e4788.tar.gz uhd-c8dca30d72eb733d154ab9dd193631c42b8e4788.tar.bz2 uhd-c8dca30d72eb733d154ab9dd193631c42b8e4788.zip |
uhd: replaced many conditional prints with UHD_LOG usage
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/utils/log.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/include/uhd/utils/log.hpp b/host/include/uhd/utils/log.hpp index b3e88f865..9dceea982 100644 --- a/host/include/uhd/utils/log.hpp +++ b/host/include/uhd/utils/log.hpp @@ -23,7 +23,7 @@ #include <ostream> #include <string> -/*! +/*! \file log.hpp * The UHD logging facility. * * The logger enables UHD library code to easily log events into a file. @@ -35,6 +35,7 @@ * To override <temp-directory>, set the UHD_TEMP_PATH environment variable. * * All log messages with verbosity greater than or equal to the log level + * (in other words, as often or less often than the current log level) * are recorded into the log file. All other messages are sent to null. * * The default log level is "regular", but can be overridden: |