/usr/include/uhd/utils/log.hpp is in libuhd-dev 3.4.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | //
// Copyright 2011 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef INCLUDED_UHD_UTILS_LOG_HPP
#define INCLUDED_UHD_UTILS_LOG_HPP
#include <uhd/config.hpp>
#include <uhd/utils/pimpl.hpp>
#include <boost/current_function.hpp>
#include <ostream>
#include <string>
/*! \file log.hpp
* The UHD logging facility.
*
* The logger enables UHD library code to easily log events into a file.
* Log entries are time-stamped and stored with file, line, and function.
* Each call to the UHD_LOG macros is synchronous and thread-safe.
*
* The log file can be found in the path <temp-directory>/uhd.log,
* where <temp-directory> is the user or system's temporary directory.
* 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 "never", but can be overridden:
* - at compile time by setting the pre-processor define UHD_LOG_LEVEL.
* - at runtime by setting the environment variable UHD_LOG_LEVEL.
*
* UHD_LOG_LEVEL can be the name of a verbosity enum or integer value:
* - Example pre-processor define: -DUHD_LOG_LEVEL=3
* - Example pre-processor define: -DUHD_LOG_LEVEL=regularly
* - Example environment variable: export UHD_LOG_LEVEL=3
* - Example environment variable: export UHD_LOG_LEVEL=regularly
*/
/*!
* A UHD logger macro with configurable verbosity.
* Usage: UHD_LOGV(very_rarely) << "the log message" << std::endl;
*/
#define UHD_LOGV(verbosity) \
uhd::_log::log(uhd::_log::verbosity, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION)()
/*!
* A UHD logger macro with default verbosity.
* Usage: UHD_LOG << "the log message" << std::endl;
*/
#define UHD_LOG \
UHD_LOGV(regularly)
namespace uhd{ namespace _log{
//! Verbosity levels for the logger
enum verbosity_t{
always = 1,
often = 2,
regularly = 3,
rarely = 4,
very_rarely = 5,
never = 6,
};
//! Internal logging object (called by UHD_LOG macros)
class UHD_API log{
public:
log(
const verbosity_t verbosity,
const std::string &file,
const unsigned int line,
const std::string &function
);
~log(void);
std::ostream &operator()(void);
private:
UHD_PIMPL_DECL(impl) _impl;
};
}} //namespace uhd::_log
#endif /* INCLUDED_UHD_UTILS_LOG_HPP */
|