CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::LogDebug_ Class Reference

#include <MessageLogger.h>

Public Member Functions

template<typename F >
LogDebug_log (F &&iF)
 
 LogDebug_ ()
 
 LogDebug_ (std::string const &id, std::string const &file, int line)
 
template<class T >
LogDebug_operator<< (T const &t)
 
LogDebug_operator<< (std::ostream &(*f)(std::ostream &))
 
LogDebug_operator<< (std::ios_base &(*f)(std::ios_base &))
 
 ~LogDebug_ ()
 

Private Member Functions

std::string stripLeadingDirectoryTree (const std::string &file) const
 

Private Attributes

MessageSender ap
 

Detailed Description

Definition at line 510 of file MessageLogger.h.

Constructor & Destructor Documentation

edm::LogDebug_::LogDebug_ ( )
inline
edm::LogDebug_::LogDebug_ ( std::string const &  id,
std::string const &  file,
int  line 
)
explicit

Definition at line 117 of file MessageLogger.cc.

References stripLeadingDirectoryTree().

117  : ap(ELdebug, id) {
118  *this << " " << stripLeadingDirectoryTree(file) << ":" << line << "\n";
119  }
ELslProxy< ELdebugGen > const ELdebug
MessageSender ap
std::string stripLeadingDirectoryTree(const std::string &file) const
edm::LogDebug_::~LogDebug_ ( )

Definition at line 58 of file MessageLogger.cc.

58 {}

Member Function Documentation

template<typename F >
LogDebug_& edm::LogDebug_::log ( F &&  iF)
inline

Definition at line 535 of file MessageLogger.h.

References edm::LogWarning::ap, and edm::MessageSender::valid().

535  {
536  if (ap.valid()) {
537  iF(ap);
538  }
539  return *this;
540  }
MessageSender ap
template<class T >
LogDebug_& edm::LogDebug_::operator<< ( T const &  t)
inline

Definition at line 517 of file MessageLogger.h.

References edm::LogWarning::ap, and edm::MessageSender::valid().

517  {
518  if (ap.valid())
519  ap << t;
520  return *this;
521  }
MessageSender ap
LogDebug_& edm::LogDebug_::operator<< ( std::ostream &(*)(std::ostream &)  f)
inline

Definition at line 522 of file MessageLogger.h.

References edm::LogWarning::ap, f, and edm::MessageSender::valid().

522  {
523  if (ap.valid())
524  ap << f;
525  return *this;
526  }
MessageSender ap
double f[11][100]
LogDebug_& edm::LogDebug_::operator<< ( std::ios_base &(*)(std::ios_base &)  f)
inline

Definition at line 527 of file MessageLogger.h.

References edm::LogWarning::ap, f, and edm::MessageSender::valid().

527  {
528  if (ap.valid())
529  ap << f;
530  return *this;
531  }
MessageSender ap
double f[11][100]
std::string edm::LogDebug_::stripLeadingDirectoryTree ( const std::string &  file) const
private

Definition at line 121 of file MessageLogger.cc.

References FrontierConditions_GlobalTag_cff::file.

Referenced by LogDebug_().

121  {
122  std::string::size_type lastSlash = file.find_last_of('/');
123  if (lastSlash == std::string::npos)
124  return file;
125  if (lastSlash == file.size() - 1)
126  return file;
127  return file.substr(lastSlash + 1, file.size() - lastSlash - 1);
128  }
uint16_t size_type

Member Data Documentation

MessageSender edm::LogDebug_::ap
private

Definition at line 543 of file MessageLogger.h.