Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | log: Removed timeout from logger, replaced with wait. | Martin Braun | 2017-05-23 | 1 | -2/+20 |
| | | | | | This works because there's also another trace message on termination of the logger. | ||||
* | log: Moved print_system_info to log.cpp. | trungnob | 2017-05-20 | 1 | -0/+18 |
| | | | | | We want to display syteminfo when the log system get initialized. Also removes a static block. | ||||
* | log: Split add_logger() out of the main logging header | Martin Braun | 2017-05-12 | 1 | -0/+1 |
| | | | | | This way, C++11 features are not required to build with UHD headers included. | ||||
* | log: Fixed compiler warning | Martin Braun | 2017-05-03 | 1 | -1/+1 |
| | |||||
* | log: Allow logging to block | Martin Braun | 2017-04-24 | 1 | -1/+2 |
| | | | | | | | | This means it's very unlikely that logging messages get dropped, but the downside is that LOG macros can block for up to 250 ms. This is very unlikely though. Note that fastpath logging does not have this feature. It's always fast, and might drop messages. | ||||
* | log: Moved fastpath logging to its own thread | Martin Braun | 2017-04-24 | 1 | -0/+49 |
| | |||||
* | log: Fixed various issues | Martin Braun | 2017-04-22 | 1 | -33/+62 |
| | | | | | | - Made the task a regular thread - Moved verbosity operator into lib - Minor comments and indents and so on | ||||
* | log: Added more comments and manual page | Martin Braun | 2017-04-20 | 1 | -5/+17 |
| | |||||
* | log: Fix missing add_logger, fix clearing of queue | Martin Braun | 2017-04-20 | 1 | -2/+25 |
| | |||||
* | utils: implement Ettus Logging API | Andrej Rode | 2017-04-20 | 1 | -143/+182 |
| | | | | | | | | - allows adding new loggers by using add_logger API call - existing loggers (console, file) can be disabled easily - number of logging sinks is not limited Signed-off-by: Martin Braun <martin.braun@ettus.com> | ||||
* | utils: add coloring depending on loglevel to console output | Andrej Rode | 2017-04-07 | 1 | -1/+36 |
| | |||||
* | utils: provide fallback to previous loglevel on reading environment/defines | Andrej Rode | 2017-02-23 | 1 | -9/+13 |
| | |||||
* | utils: introduce new logging API and remove msg API | Andrej Rode | 2017-02-20 | 1 | -71/+147 |
| | |||||
* | log: remove MSVC 2010 Boost bug workaround | Nicholas Corgan | 2016-03-11 | 1 | -13/+1 |
| | |||||
* | uhd: Switched lock_guards header to locks.hpp | Martin Braun | 2014-09-30 | 1 | -1/+1 |
| | |||||
* | uhd: Fixed logging bug (#476) -- UHD logging has unexplained effect on ↵ | michael-west | 2014-09-24 | 1 | -31/+28 |
| | | | | | | | packet loss. - Removed logging from radio_ctrl_core_3000 - Changed logging facility to prevent type conversion when message is not logged | ||||
* | log: replaced usage of deprecated boost::filesystem function | Nicholas Corgan | 2014-05-12 | 1 | -3/+3 |
| | |||||
* | uhd: used shared get_tmp_path for logging as well | Josh Blum | 2012-05-16 | 1 | -44/+3 |
| | | | | Moved some of the log.cpp tmp paths smarts into paths as well | ||||
* | uhd: tweaks to log and msg implementation | Josh Blum | 2011-06-01 | 1 | -23/+19 |
| | | | | | | The implementations now contain the string stream in each instance. This way there is not a global stringstream to lock access to. This resolves the issue of nested log calls locking condition. | ||||
* | uhd: init log file lock ptr to null | Josh Blum | 2011-05-13 | 1 | -0/+4 |
| | |||||
* | uhd: work on logging and message facility initialization | Josh Blum | 2011-05-13 | 1 | -53/+59 |
| | |||||
* | Make log locking work with picky boost | Jason Abele | 2011-05-05 | 1 | -4/+5 |
| | |||||
* | uhd: various tweaks to log and msg, replaced a few remaining stdio | Josh Blum | 2011-05-04 | 1 | -1/+1 |
| | |||||
* | uhd: removed more iostream stuff from usrp* implementations | Josh Blum | 2011-05-04 | 1 | -1/+2 |
| | |||||
* | uhd: replaced warning post with calls to UHD_MSG(warning) | Josh Blum | 2011-05-04 | 1 | -1/+1 |
| | | | | | The message api can support warnings, error, and status messages. The default handler is to stdio, but the user can change this. | ||||
* | uhd: added interprocess file lock to the logger file | Josh Blum | 2011-05-04 | 1 | -3/+30 |
| | |||||
* | uhd: tweaks for logger file entries | Josh Blum | 2011-05-04 | 1 | -6/+21 |
| | |||||
* | usrp: replaced conditional dboard debug prints w/ UHD_LOGV(often) | Josh Blum | 2011-05-04 | 1 | -6/+0 |
| | |||||
* | uhd: moved the logger into the utils subdir | Josh Blum | 2011-05-04 | 1 | -0/+177 |