nidas v1.2.3
|
#define | ELOG(MSG) LOGGER_LOGPOINT(LOGGER_EMERG,"",MSG) |
#define | ALOG(MSG) LOGGER_LOGPOINT(LOGGER_ALERT,"",MSG) |
#define | CLOG(MSG) LOGGER_LOGPOINT(LOGGER_CRITICAL,"",MSG) |
#define | PLOG(MSG) LOGGER_LOGPOINT(LOGGER_ERR,"",MSG) |
#define | WLOG(MSG) LOGGER_LOGPOINT(LOGGER_WARNING,"",MSG) |
#define | NLOG(MSG) LOGGER_LOGPOINT(LOGGER_NOTICE,"",MSG) |
#define | ILOG(MSG) LOGGER_LOGPOINT(LOGGER_INFO,"",MSG) |
#define | DLOG(MSG) LOGGER_LOGPOINT(LOGGER_DEBUG,"",MSG) |
#define | VLOG(MSG) LOGGER_LOGPOINT(LOGGER_VERBOSE,"",MSG) |
#define | ELOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_EMERG,TAGS,MSG) |
#define | ALOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_ALERT,TAGS,MSG) |
#define | CLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_CRITICAL,TAGS,MSG) |
#define | PLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_ERR,TAGS,MSG) |
#define | WLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_WARNING,TAGS,MSG) |
#define | NLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_NOTICE,TAGS,MSG) |
#define | ILOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_INFO,TAGS,MSG) |
#define | DLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_DEBUG,TAGS,MSG) |
#define | VLOGT(TAGS, MSG) LOGGER_LOGPOINT(LOGGER_VERBOSE,TAGS,MSG) |
These macros specify a log point in the code from which the given message can be logged with the given log level. The macro generates code which first tests whether the log point is active before generating the message, thus minimizing the time overhead for logging. The active() status is tested without locking, so if multiple threads are sharing a log point, or if logging is reconfigured while threads are running, then that could be considered a violation of mutual exclusion. Concurrency checkers like helgrind may complain about this in multithreaded code.
The MSG
argument must be in parentheses, so that it can be a variable argument list. The whole argument list is passed to LogMessage::format() to generate the message string.
Since LogMessage::format() returns the LogMessage instance, further text can be added to the message with the streaming operator<<, like so:
The macro forms with the T suffix include a tags string which will be associated with the LogContext:
Tags just allow one more way to discriminate among log points. Log points can be activated or deactivated according to their tags through a LogConfig.
#define ALOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_ALERT,"",MSG) |
#define ALOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_ALERT,TAGS,MSG) |
#define CLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_CRITICAL,"",MSG) |
#define CLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_CRITICAL,TAGS,MSG) |
#define DLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_DEBUG,"",MSG) |
Referenced by nidas::util::McSocketListener::add(), nidas::util::McSocketListener::add(), nidas::dynld::raf::SyncRecordGenerator::addSampleClient(), nidas::dynld::iss::WICORSensor::addSampleTag(), nidas::core::TimetagAdjuster::adjust(), nidas::core::IOStream::backup(), nidas::core::SerialSensor::buildSampleScanner(), nidas::dynld::GPS_NMEA_Serial::buildSampleScanner(), nidas::core::FsMount::cancel(), nidas::core::NidasApp::checkRequiredArguments(), nidas::core::SampleOutputBase::close(), nidas::util::ServerSocket::close(), nidas::dynld::SampleInputStream::closeBlocks(), nidas::util::FileSet::closeFile(), nidas::dynld::raf::SyncRecordSource::connect(), nidas::dynld::StatisticsCruncher::connect(), nidas::dynld::XMLConfigService::connected(), nidas::core::DSMEngine::connectOutputs(), copy_variables_to_record(), DataStats::createCounters(), nidas::util::FileSet::createDirectory(), nidas::util::FileSet::createFile(), nidas::core::DOMObjectFactory::createObject(), nidas::util::SerialPort::createPty(), nidas::dynld::isff::CSAT3_Sonic::dataMode(), dataToInfluxDB(), nidas::core::SampleOutputRequestThread::destroyInstance(), nidas::dynld::RawSampleService::disconnect(), nidas::dynld::raf::SyncRecordReader::endOfStream(), nidas::core::DSMEngineIntf::SensorAction::execute(), nidas::core::Project::findDSM(), nidas::core::Project::findDSM(), nidas::core::Project::findDSM(), nidas::core::SampleSorter::flush(), nidas::dynld::raf::SyncRecordSource::flush(), nidas::dynld::raf::DSMArincSensor::fromDOMElement(), nidas::dynld::isff::Wind2D::fromDOMElement(), nidas::dynld::DSC_A2DSensor::getA2DSetup(), nidas::dynld::raf::A2D_Serial::getA2DSetup(), nidas::dynld::raf::DSMAnalogSensor::getA2DSetup(), nidas::util::Inet4NetworkInterface::getInterface(), nidas::dynld::SampleInputStream::handleEOF(), nidas::dynld::SampleInputStream::handleNewInput(), InfluxDB::handleResult(), nidas::core::SampleSorter::heapDecrement(), nidas::dynld::raf::SyncRecordReader::init(), nidas::dynld::raf::SyncServer::init(), nidas::dynld::raf::SyncRecordGenerator::init(), nidas::util::FileSet::initialize(), nidas::dynld::raf::SyncServer::initProject(), nidas::core::XmlRpcThread::interrupt(), nidas::dynld::raf::SyncServer::interrupt(), nidas::core::DSMEngine::joinDataThreads(), nidas::core::DSMServerApp::killStatusThread(), nidas::core::DSMEngine::killXmlRpcThread(), nidas::core::DSMServerApp::killXmlRpcThread(), PConfig::loadVariables(), nidas::core::NidasApp::lockMemory(), main(), nidas::core::DSMServerApp::main(), nidas::util::FileSet::matchFiles(), nidas::dynld::SampleInputStream::nextSample(), nidas::dynld::isff::CSAT3_Sonic::open(), nidas::dynld::ModbusRTU::open(), nidas::util::FileSet::openNextFile(), nidas::dynld::raf::SyncServer::openStream(), nidas::core::Polynomial::parseFields(), nidas::dynld::SampleInputStream::parseInputHeader(), NidsMerge::parseRunstring(), nidas::dynld::iss::WICORSensor::process(), nidas::dynld::raf::UDPArincSensor::process(), nidas::dynld::raf::DSMArincSensor::processAlta(), nidas::dynld::raf::TwoD64_USB::processImageRecord(), nidas::core::SamplePool< SampleType >::putSample(), nidas::core::SamplePool< SampleType >::putSample(), nidas::dynld::isff::CSAT3_Sonic::querySonic(), nidas::dynld::SampleInputStream::read(), nidas::dynld::raf::SyncServer::read(), nidas::core::SampleScanner::readBuffer(), nidas::core::VariableConverter::readCalFile(), DataStats::readHeader(), nidas::dynld::SampleInputStream::readInputHeader(), nidas::dynld::DSC_FreqCounter::readParams(), nidas::core::DSMSensor::readSamples(), DataStats::readSamples(), nidas::core::IOStream::reallocateBuffer(), nidas::core::SampleSorter::receive(), SampleDispatcher::receive(), DataStats::receive(), nidas::dynld::raf::DSMArincSensor::registerWithUDPArincSensor(), nidas::core::MultipleUDPSockets::removeClient(), nidas::core::requestXMLConfig(), PConfig::resolveCalFile(), DataStats::restartStats(), DataStats::run(), DataPrep::run(), NidsMerge::run(), StatsProcess::run(), TeeTTy::run(), nidas::core::DSMServerIntf::run(), nidas::core::Socket::ConnectionThread::run(), nidas::core::ServerSocket::ConnectionThread::run(), nidas::dynld::raf::SyncServer::run(), nidas::dynld::RawSampleService::Worker::run(), nidas::util::McSocketListener::run(), nidas::util::McSocketMulticaster< SocketTT >::run(), SampleDispatcher::SampleDispatcher(), nidas::core::SamplePool< SampleType >::SamplePool(), nidas::dynld::WxtSensor::scanSample(), nidas::dynld::SampleInputStream::search(), nidas::dynld::raf::PSI9116_Sensor::sendCommand(), InfluxDB::sendData(), nidas::dynld::raf::DSMMesaSensor::sendFPGACodeToDriver(), nidas::dynld::raf::SyncRecordGenerator::sendHeader(), nidas::core::CharacterSensor::sendInitString(), nidas::dynld::isff::CSAT3_Sonic::sendRateCommand(), nidas::dynld::raf::SyncRecordSource::sendSyncHeader(), nidas::dynld::isff::WindOrienter::setOrientation(), nidas::dynld::raf::SyncServer::setTimeWindow(), nidas::core::Looper::setupClientMaps(), nidas::core::NidasApp::setupProcess(), nidas::util::Thread::sigAction(), nidas::dynld::raf::SyncServer::signalStop(), nidas::dynld::raf::SyncServer::stop(), nidas::dynld::raf::PSI9116_Sensor::stopStreams(), nidas::dynld::isff::CSAT3_Sonic::terminalMode(), nidas::dynld::DSC_A2DSensor::testVoltage(), nidas::dynld::raf::A2D_Serial::testVoltage(), nidas::dynld::raf::DSMAnalogSensor::testVoltage(), nidas::dynld::isff::NCAR_TRH::validate(), nidas::dynld::isff::Wind2D::validate(), nidas::dynld::isff::Wind2D::validateSscanfs(), nidas::dynld::WxtSensor::wxtValidateSscanfs(), nidas::core::XmlRpcThread::XmlRpcThread(), nidas::core::SampleSorter::~SampleSorter(), nidas::core::ServerSocket::~ServerSocket(), nidas::dynld::raf::SyncRecordReader::~SyncRecordReader(), and nidas::dynld::raf::SyncServer::~SyncServer().
#define DLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_DEBUG,TAGS,MSG) |
#define ELOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_EMERG,"",MSG) |
Referenced by nidas::dynld::raf::UDPArincSensor::close(), nidas::dynld::raf::UDPiPMSensor::close(), dataToInfluxDB(), nidas::dynld::RawSampleService::disconnect(), nidas::util::Inet4Address::getHostName(), nidas::util::Process::getMaxRSS(), nidas::util::Process::getVMemSize(), nidas::dynld::GPS_Novatel_Serial::gps_to_utc(), nidas::util::SocketImpl::joinGroup(), PConfig::loadRemoteXML(), nidas::dynld::raf::UDPArincSensor::open(), nidas::dynld::raf::UDPiPMSensor::open(), nidas::util::FileSet::openNextFile(), nidas::dynld::iss::WICORSensor::process(), SampleCounter::receive(), nidas::util::McSocketListener::run(), and nidas::util::Thread::setThreadSchedulerNolock().
#define ELOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_EMERG,TAGS,MSG) |
#define ILOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_INFO,"",MSG) |
Referenced by nidas::core::SensorHandler::add(), nidas::core::MultipleUDPSockets::addClient(), nidas::dynld::UDPSampleOutput::ConnectionMonitor::addDestination(), nidas::dynld::StatisticsProcessor::addRequestedSampleTag(), nidas::core::FsMount::autoMount(), nidas::util::SerialPort::close(), nidas::core::ServerSocket::connect(), nidas::dynld::RawSampleService::connect(), nidas::core::SampleArchiver::connect(), nidas::dynld::raf::CVIProcessor::connect(), nidas::dynld::raf::SyncRecordGenerator::connect(), nidas::core::MultipleUDPSockets::connected(), nidas::util::FileSet::createDirectory(), nidas::util::FileSet::createFile(), InfluxDB::createInfluxDB(), nidas::dynld::isff::CSAT3_Sonic::dataMode(), nidas::core::SampleOutputBase::disconnect(), nidas::dynld::RawSampleService::disconnect(), nidas::core::SampleArchiver::disconnect(), nidas::dynld::raf::SyncRecordGenerator::disconnect(), nidas::dynld::raf::DSMMesaSensor::DSMMesaSensor(), InfluxDB::flush(), nidas::core::Project::fromDOMElement(), nidas::dynld::raf::DSMMesaSensor::fromDOMElement(), nidas::core::NidasApp::getDataset(), nidas::dynld::GPS_Novatel_Serial::gps_to_utc(), nidas::core::RemoteSerialConnection::handlePollEvents(), nidas::core::SensorHandler::handlePollingChange(), nidas::dynld::isff::NCAR_TRH::handleRawRH(), nidas::dynld::isff::NCAR_TRH::handleRawT(), nidas::core::SensorHandler::incrementFullBufferReads(), nidas::core::DSMEngine::initialize(), nidas::core::DSMServer::joinServices(), DataStats::jsonReport(), StatsProcess::listOutputSamples(), PConfig::loadRemoteXML(), nidas::core::NidasApp::lockMemory(), PConfig::main(), main(), nidas::core::DSMEngine::main(), nidas::core::FsMount::mount(), nidas::core::CalFile::open(), nidas::dynld::raf::DSMArincSensor::open(), nidas::dynld::raf::DSMMesaSensor::open(), nidas::dynld::raf::UDPArincSensor::open(), nidas::dynld::raf::UDPiPMSensor::open(), nidas::util::SerialPort::open(), nidas::util::FileSet::openNextFile(), nidas::dynld::raf::SyncRecordSource::preLoadCalibrations(), nidas::dynld::isff::CSI_IRGA_Sonic::process(), nidas::util::Thread::pRun(), nidas::dynld::isff::WisardMote::readHead(), SampleCounter::receive(), nidas::util::SocketImpl::receive(), nidas::util::SocketImpl::receive(), nidas::util::SocketImpl::recv(), nidas::util::SocketImpl::recvfrom(), nidas::core::Project::removeAutoConfig(), nidas::core::MultipleUDPSockets::removeClient(), nidas::core::MultipleUDPSockets::removeClient(), DataStats::report(), nidas::core::ServerSocket::requestConnection(), DataStats::run(), DataPrep::run(), WriterThread::run(), ServerThread::run(), StatsProcess::run(), nidas::core::Looper::run(), nidas::core::SampleSorter::run(), nidas::core::SensorHandler::run(), nidas::core::StatusListener::run(), nidas::core::DSMServerStat::run(), nidas::dynld::UDPSampleOutput::ConnectionMonitor::run(), nidas::dynld::UDPSampleOutput::XMLSocketListener::run(), nidas::util::McSocketListener::run(), nidas::util::McSocketMulticaster< SocketTT >::run(), nidas::dynld::raf::DSMMesaSensor::selectfiletype(), nidas::dynld::raf::DSMMesaSensor::sendFPGACodeToDriver(), nidas::dynld::raf::SppSerial::sendInitPacketAndCheckAck(), nidas::dynld::raf::UHSAS_Serial::sendInitString(), nidas::core::NidasApp::setFileSetTimes(), nidas::util::SocketImpl::setNonBlocking(), nidas::core::NidasApp::setOutputClipping(), nidas::util::SocketImpl::setTcpNoDelay(), nidas::core::Looper::setupClientMaps(), InfluxDB::setUser(), nidas::util::Thread::thr_cleanup(), nidas::dynld::raf::UDPiPMSensor::validate(), nidas::core::DSMEngine::waitForSignal(), nidas::core::DSMServerApp::waitForSignal(), nidas::core::MultipleUDPSockets::write(), nidas::core::MultipleUDPSockets::write(), TeeI2C::writeFilteredOutput(), nidas::core::SampleSorter::~SampleSorter(), and nidas::dynld::raf::SyncRecordSource::~SyncRecordSource().
#define ILOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_INFO,TAGS,MSG) |
#define NLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_NOTICE,"",MSG) |
Referenced by nidas::util::SocketImpl::accept(), nidas::core::SensorHandler::add(), nidas::dynld::isff::WisardMote::checkCRC(), nidas::dynld::isff::WisardMote::checkEOM(), nidas::core::DSMSensor::close(), nidas::dynld::XMLConfigService::connected(), nidas::core::SensorHandler::PolledDSMSensor::handlePollEvents(), main(), nidas::core::DSMSensor::open(), nidas::core::XMLParser::parse(), nidas::core::DSMServerApp::parseXMLConfigFile(), nidas::dynld::raf::IRIGSensor::printStatus(), nidas::dynld::isff::CSI_CRX_Binary::process(), nidas::core::SampleScanner::readBuffer(), nidas::dynld::SampleOutputStream::receive(), nidas::core::DerivedDataReader::run(), nidas::core::SampleSorter::run(), nidas::dynld::raf::PSI9116_Sensor::sendCommand(), nidas::dynld::raf::DSMMesaSensor::sendFPGACodeToDriver(), sigAction(), TeeI2C::writeFilteredOutput(), TeeI2C::writeOutput(), and nidas::core::RemoteSerialConnection::~RemoteSerialConnection().
#define NLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_NOTICE,TAGS,MSG) |
#define PLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_ERR,"",MSG) |
Referenced by nidas::core::SensorHandler::add(), nidas::core::SensorHandler::add(), nidas::core::FsMount::cancel(), nidas::core::NidasApp::checkPidFile(), nidas::dynld::UDPSampleOutput::XMLSocketListener::checkWorkers(), nidas::dynld::XMLConfigService::connected(), nidas::dynld::StatisticsProcessor::connectSource(), nidas::core::DerivedDataReader::deleteInstance(), nidas::core::StatusHandler::error(), nidas::core::DSMEngineIntf::DSMAction::execute(), nidas::core::DSMEngineIntf::SensorAction::execute(), nidas::dynld::DSC_A2DSensor::executeXmlRpc(), nidas::dynld::raf::A2D_Serial::executeXmlRpc(), nidas::dynld::raf::DSMAnalogSensor::executeXmlRpc(), nidas::dynld::raf::PSI9116_Sensor::executeXmlRpc(), nidas::core::StatusHandler::fatalError(), nidas::dynld::UDPSampleOutput::XMLSocketListener::fireWorkers(), nidas::dynld::raf::DSMMesaSensor::fromDOMElement(), nidas::dynld::raf::DSMAnalogSensor::getA2DSetup(), nidas::core::NidasApp::getHostName(), StatsProcess::getStatisticsProcessor(), nidas::core::Project::getUniqueSampleId(), nidas::core::RemoteSerialConnection::handlePollEvents(), nidas::core::RemoteSerialListener::handlePollEvents(), nidas::core::SensorHandler::PolledDSMSensor::handlePollEvents(), nidas::core::SensorHandler::NotifyPipe::handlePollEvents(), nidas::util::McSocketListener::interrupt(), nidas::util::McSocketMulticaster< SocketTT >::interrupt(), nidas::core::DSMEngine::joinDataThreads(), StatsProcess::listOutputSamples(), PacketReader::loop(), main(), nidas::core::DSMEngine::main(), nidas::core::DSMServerApp::main(), nidas::dynld::isff::CSAT3_Sonic::open(), nidas::dynld::raf::UDPArincSensor::open(), nidas::dynld::raf::UDPiPMSensor::open(), nidas::dynld::SampleInputStream::parseInputHeader(), nidas::dynld::iss::TiltSensor::process(), nidas::dynld::isff::DAUSensor::process(), nidas::core::SensorHandler::remove(), nidas::core::SensorHandler::remove(), nidas::core::requestXMLConfig(), DataPrep::run(), ServerThread::run(), StatsProcess::run(), TeeI2C::run(), TeeTTy::run(), nidas::core::DerivedDataReader::run(), nidas::core::DSMEngine::run(), nidas::core::DSMServerApp::run(), nidas::core::FsMountWorkerThread::run(), nidas::core::SampleOutputRequestThread::run(), nidas::core::SensorHandler::run(), nidas::core::SensorOpener::run(), nidas::core::StatusListener::run(), nidas::dynld::XMLConfigService::Worker::run(), nidas::util::ThreadJoiner::run(), nidas::core::FileSet::setNonBlocking(), nidas::core::StatusListener::StatusListener(), nidas::dynld::DSC_A2DSensor::testVoltage(), nidas::dynld::raf::A2D_Serial::testVoltage(), nidas::dynld::raf::DSMAnalogSensor::testVoltage(), nidas::core::DSMEngine::waitForSignal(), nidas::core::DSMServerApp::waitForSignal(), nidas::core::SensorHandler::NotifyPipe::~NotifyPipe(), nidas::core::RemoteSerialListener::~RemoteSerialListener(), and nidas::util::Thread::~Thread().
#define PLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_ERR,TAGS,MSG) |
#define VLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_VERBOSE,"",MSG) |
Referenced by nidas::util::SocketImpl::accept(), nidas::util::McSocket< SocketT >::accept(), nidas::util::McSocketListener::accept(), nidas::util::McSocketListener::accept(), nidas::util::McSocketListener::add(), nidas::core::SampleOutputRequestThread::addConnectRequest(), InfluxDB::addMeasurement(), nidas::dynld::isff::WisardMote::addMoteSampleTag(), nidas::dynld::StatisticsProcessor::addRequestedSampleTag(), nidas::core::SamplePipeline::addSampleClient(), nidas::dynld::StatisticsCruncher::attach(), CharBuffer::CharBuffer(), TeeI2C::checkNMEA(), nidas::util::UTime::checkParse(), nidas::dynld::SampleOutputStream::close(), nidas::util::McSocket< SocketT >::close(), nidas::util::SocketImpl::close(), nidas::util::McSocketListener::close(), nidas::util::McSocketListener::close(), nidas::util::McSocket< SocketT >::connect(), nidas::dynld::RawSampleService::connect(), nidas::core::SampleArchiver::connect(), nidas::dynld::StatisticsCruncher::connect(), nidas::dynld::StatisticsProcessor::connectSource(), nidas::dynld::StatisticsCruncher::createCombinations(), nidas::dynld::RawSampleService::disconnect(), nidas::core::Dictionary::expandString(), nidas::core::Site::findDSM(), nidas::core::Site::findDSM(), nidas::core::Site::findSensor(), SampleDispatcher::findStats(), nidas::core::SampleSorter::flush(), nidas::dynld::SampleInputStream::flush(), nidas::dynld::SampleOutputStream::flush(), nidas::util::SocketImpl::getInterface(), nidas::util::SocketImpl::getInterface(), nidas::util::SocketImpl::getInterfaces(), nidas::util::SocketImpl::getLocalAddr(), nidas::util::SocketImpl::getReceiveBufferSize(), nidas::util::SocketImpl::getRemoteAddr(), nidas::util::SocketImpl::getSendBufferSize(), StatsProcess::getStatisticsProcessor(), nidas::dynld::SampleInputStream::handleNewInput(), DataStats::hashId(), nidas::util::SocketImpl::joinGroup(), nidas::util::McSocket< SocketT >::joinMulticaster(), nidas::util::listMulticastInterfaces(), PacketReader::loop(), DataPrep::matchVariables(), nidas::core::NearestResamplerAtRate::NearestResamplerAtRate(), nidas::dynld::SampleInputStream::nextSample(), CharBuffer::operator=(), nidas::util::EndianConverter::privGetHostEndianness(), nidas::dynld::isff::WisardMote::process(), nidas::dynld::isff::CSAT3_Sonic::process(), nidas::core::SamplePipeline::procinit(), nidas::core::SamplePipeline::rawinit(), nidas::core::IOStream::read(), nidas::dynld::SampleInputStream::read(), nidas::core::CalFile::readCFInclude(), nidas::dynld::isff::WisardMote::readHead(), nidas::core::CalFile::readLine(), nidas::dynld::SampleInputStream::readSamples(), nidas::core::IOStream::reallocateBuffer(), nidas::dynld::SampleOutputStream::receive(), SampleDispatcher::receive(), SampleCounter::receive(), DataStats::receive(), nidas::util::McSocketListener::remove(), nidas::util::McSocketListener::remove(), nidas::core::Project::removeAutoConfig(), DataPrep::run(), WriterThread::run(), nidas::core::Looper::run(), nidas::util::McSocketListener::run(), nidas::util::McSocketMulticaster< SocketTT >::run(), nidas::dynld::WxtSensor::scanSample(), nidas::util::SocketImpl::send(), nidas::core::StatusThread::sendStatus(), nidas::core::CalFile::setDateTimeFormat(), nidas::util::SocketImpl::setInterface(), nidas::core::CalFile::setTimeZone(), nidas::dynld::isff::WisardMote::unpackAccumSec(), nidas::dynld::isff::WisardMote::validate(), TeeI2C::writeOutput(), nidas::core::SampleBuffer::~SampleBuffer(), nidas::dynld::SampleOutputStream::~SampleOutputStream(), and nidas::core::SampleSorter::~SampleSorter().
#define VLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_VERBOSE,TAGS,MSG) |
Referenced by nidas::dynld::StatisticsProcessor::connectSource().
#define WLOG | ( | MSG | ) | LOGGER_LOGPOINT(LOGGER_WARNING,"",MSG) |
Referenced by nidas::core::VariableConverter::abortCalFile(), nidas::dynld::UDPSampleOutput::ConnectionMonitor::addConnection(), nidas::dynld::isff::WisardMote::addMoteSampleTag(), nidas::dynld::StatisticsCruncher::attach(), nidas::core::IOStream::backup(), nidas::util::SocketImpl::bind(), nidas::dynld::raf::A2D_Serial::checkCkSum(), nidas::dynld::isff::WisardMote::checkCRC(), nidas::dynld::raf::Watlow::checkCRC(), nidas::dynld::isff::WisardMote::checkEOM(), nidas::core::SensorHandler::PolledDSMSensor::checkTimeout(), nidas::dynld::SampleInputStream::checkUnexpectedEOF(), nidas::dynld::RawSampleService::connect(), nidas::core::SampleArchiver::connect(), nidas::core::NearestResamplerAtRate::connect(), nidas::core::SampleAverager::connect(), nidas::dynld::StatisticsCruncher::connect(), nidas::core::NearestResampler::connect(), nidas::dynld::XMLConfigService::connected(), nidas::dynld::UDPSampleOutput::connected(), nidas::util::FileSet::createFile(), nidas::dynld::raf::SyncRecordSource::createHeader(), nidas::dynld::isff::WisardMote::createSampleTag(), nidas::dynld::raf::LamsSensor::derivedDataNotify(), nidas::core::SampleOutputRequestThread::destroyInstance(), nidas::dynld::RawSampleService::disconnect(), nidas::core::Project::findDSM(), nidas::core::Project::findDSM(), nidas::core::Project::findServerSampleOutputStreamFileSets(), nidas::core::SampleSorter::flush(), nidas::dynld::SampleOutputStream::flush(), nidas::core::DatagramSocket::fromDOMElement(), nidas::core::DSMConfig::fromDOMElement(), nidas::core::Socket::fromDOMElement(), nidas::core::Variable::fromDOMElement(), nidas::core::SampleIOProcessor::fromDOMElement(), nidas::core::SampleOutputBase::fromDOMElement(), nidas::dynld::SampleInputStream::fromDOMElement(), nidas::core::NidasApp::getDataset(), nidas::util::Inet4Address::getHostName(), nidas::core::MultipleUDPSockets::handleChangedSockets(), nidas::core::SensorHandler::PolledDSMSensor::handlePollEvents(), nidas::dynld::raf::DSMArincSensor::init(), nidas::core::DerivedDataReader::interrupt(), nidas::core::SensorOpener::interrupt(), nidas::core::XmlRpcThread::interrupt(), nidas::core::SamplePipeline::join(), nidas::core::DSMEngine::joinDataThreads(), nidas::core::DSMServerApp::killStatusThread(), nidas::core::DSMEngine::killXmlRpcThread(), nidas::core::DSMServerApp::killXmlRpcThread(), nidas::core::NidasApp::lockMemory(), PacketReader::logBadPacket(), nidas::dynld::SampleInputStream::nextSample(), nidas::core::SensorHandler::NotifyPipe::notify(), nidas::dynld::isff::CSAT3_Sonic::open(), nidas::dynld::raf::A2D_Serial::parseConfigLine(), nidas::core::Polynomial::parseFields(), nidas::dynld::isff::CSI_IRGA_Sonic::parseParameters(), nidas::dynld::raf::DSMArincSensor::process(), nidas::dynld::isff::WisardMote::process(), nidas::dynld::GPS_NMEA_Serial::process(), nidas::dynld::GPS_Novatel_Serial::process(), nidas::dynld::ModbusRTU::process(), nidas::dynld::raf::LamsNetSensor::process(), nidas::dynld::raf::PPT_Serial::process(), nidas::dynld::raf::UDPArincSensor::process(), nidas::dynld::raf::UHSAS_Serial::process(), nidas::dynld::raf::Watlow::process(), nidas::dynld::raf::DSMArincSensor::processAlta(), nidas::dynld::raf::TwoD32_USB::processImage(), nidas::dynld::raf::TwoD64_USB::processImageRecord(), nidas::dynld::raf::A2D_Serial::readConfig(), nidas::dynld::isff::WisardMote::readHead(), nidas::core::NearestResampler::receive(), nidas::core::NearestResamplerAtRate::receive(), nidas::core::SampleSorter::receive(), nidas::dynld::SampleOutputStream::receive(), nidas::dynld::StatisticsCruncher::receive(), SampleDispatcher::receive(), nidas::util::SocketImpl::receive(), nidas::core::SensorHandler::remove(), nidas::dynld::UDPSampleOutput::ConnectionMonitor::removeConnection(), nidas::dynld::isff::CU_Coldwire::reportBadChecksum(), nidas::dynld::isff::CSI_CRX_Binary::reportBadCRC(), nidas::dynld::isff::CSI_IRGA_Sonic::reportBadCRC(), DataPrep::run(), WriterThread::run(), ServerThread::run(), StatsProcess::run(), TeeI2C::run(), TeeTTy::run(), nidas::core::DerivedDataReader::run(), nidas::core::SampleBuffer::run(), nidas::core::SampleSorter::run(), nidas::core::SensorOpener::run(), nidas::core::DSMEngineStat::run(), nidas::core::DSMServerStat::run(), nidas::dynld::RawSampleService::Worker::run(), nidas::util::McSocketListener::run(), nidas::util::McSocketMulticaster< SocketTT >::run(), nidas::dynld::SampleInputStream::sampleFromHeader(), SampleToDatabase::SampleToDatabase(), nidas::dynld::WxtSensor::scanSample(), nidas::core::RemoteSerialConnection::sensorNotFound(), TeeI2C::setFIFOPriority(), TeeTTy::setFIFOPriority(), nidas::util::Thread::setThreadSchedulerNolock(), nidas::core::NidasApp::setupProcess(), nidas::dynld::isff::CSAT3_Sonic::terminalMode(), nidas::dynld::raf::A2D_Serial::validate(), nidas::core::DSMEngine::waitForSignal(), nidas::core::DSMServerApp::waitForSignal(), nidas::core::MessageStreamScanner::warnBackwardsStepTimeTag(), nidas::core::StatusHandler::warning(), nidas::core::MessageStreamScanner::warnNonIncrTimeTag(), nidas::core::IOStream::write(), TeeI2C::writeFilteredOutput(), TeeI2C::writeOutput(), nidas::dynld::WxtSensor::wxtValidateSscanfs(), nidas::dynld::XMLConfigAllService::XMLConfigAllService(), nidas::core::DatagramSocket::~DatagramSocket(), nidas::core::SampleBuffer::~SampleBuffer(), nidas::core::SampleSorter::~SampleSorter(), and nidas::core::Socket::~Socket().
#define WLOGT | ( | TAGS, | |
MSG ) LOGGER_LOGPOINT(LOGGER_WARNING,TAGS,MSG) |