39 std::array<einhard::Logger<>, std::tuple_size<LogArea::AreaTuple>::value> 
logg;
 
   51 template <
int index, 
int stop = 0>
 
   52 constexpr 
typename std::enable_if<(index == stop), 
int>::type
 
   54   using LogAreaTag = 
typename std::remove_reference<decltype(
 
   55       std::get<index>(std::declval<LogArea::AreaTuple &>()))>::type;
 
   56   return LogAreaTag::textual_length();
 
   70 template <
int index, 
int stop = 0, 
int mid = (index + stop) / 2>
 
   71 constexpr 
typename std::enable_if<(index > stop), 
int>::type
 
   73   return find_longest_logger_name<index, mid + 1>() >
 
   74                  find_longest_logger_name<mid, stop>()
 
   75              ? find_longest_logger_name<index, mid + 1>()
 
   76              : find_longest_logger_name<mid, stop>();
 
   84 template <std::
size_t index, 
int>
 
  100 template <std::size_t index,
 
  104   using LogAreaTag = 
typename std::remove_reference<decltype(
 
  105       std::get<index - 1>(std::declval<LogArea::AreaTuple &>()))>::type;
 
  106   static_assert(LogAreaTag::id == index - 1,
 
  107                 "The order of types in LogArea::AreaTuple does not match the " 
  108                 "id values in the LogArea types. Please fix! (see top of " 
  109                 "'include/logging.h')");
 
  110   auto &logger = 
logg[LogAreaTag::id];
 
  112   logger.setAreaName(tmp);
 
  119   create_all_loggers_impl<std::tuple_size<LogArea::AreaTuple>::value>(config);
 
Interface to the SMASH configuration files.
 
Value take(std::initializer_list< const char * > keys)
The default interface for SMASH to read configuration values.
 
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
 
void set_default_loglevel(einhard::LogLevel level)
Set the default log level (what will be returned from subsequent default_loglevel calls).
 
einhard::LogLevel default_loglevel()
 
void create_all_loggers(Configuration config)
Called from main() right after the Configuration object is fully set up to create all logger objects ...
 
LogLevel
Specification of the message severity.
 
std::string fill_both(const std::string &s, size_t width, char fill=' ')
Fill string with characters at both sides until the given width is reached.
 
static einhard::LogLevel global_default_loglevel
The default logging level is ALL.
 
constexpr std::enable_if<(index==stop), int >::type find_longest_logger_name()
 
std::enable_if<(index==0)>::type create_all_loggers_impl(Configuration &)