v0.14.0
Loading...
Searching...
No Matches
Classes | Macros | Enumerations | Functions
Mofem_log_manager

Log manager. More...

Collaboration diagram for Mofem_log_manager:

Classes

struct  MoFEM::LogManager
 Log manager is used to build and partition problems. More...
 

Macros

#define MOFEM_LOG_CHANNEL(channel)    { MoFEM::LogManager::setLog(channel); }
 Set and reset channel.
 
#define MOFEM_LOG_ATTRIBUTES(channel, bit)    { MoFEM::LogManager::addAttributes(channel, bit); }
 Add attributes to channel.
 
#define MOFEM_LOG(channel, severity)    BOOST_LOG_SEV(MoFEM::LogManager::getLog(channel), severity)
 Log.
 
#define MOFEM_LOG_FUNCTION()
 Set scope.
 
#define MOFEM_LOG_TAG(channel, tag)   MoFEM::LogManager::addTag(channel, tag);
 Tag channel.
 

Enumerations

enum  MoFEM::LogManager::SeverityLevel {
  MoFEM::LogManager::noisy , MoFEM::LogManager::verbose , MoFEM::LogManager::inform , MoFEM::LogManager::warning ,
  MoFEM::LogManager::error
}
 Severity levels. More...
 
enum  MoFEM::LogManager::LogAttributesBits { MoFEM::LogManager::BitLineID = 1 << 0 , MoFEM::LogManager::BitScope = 1 << 1 }
 Tag attributes switches. More...
 

Functions

static void MoFEM::LogManager::addAttributes (LogManager::LoggerType &lg, const int bit=0)
 Add attributes to logger.
 
static void MoFEM::LogManager::addAttributes (const std::string channel, const int bit=0)
 Add attributes to channel.
 
static LoggerTypeMoFEM::LogManager::setLog (const std::string channel)
 Set ans resset chanel logger.
 
static LoggerTypeMoFEM::LogManager::getLog (const std::string channel)
 Get logger by channel.
 
static void MoFEM::LogManager::addTag (LogManager::LoggerType &lg, const std::string tag)
 Add tag to logger.
 
static void MoFEM::LogManager::addTag (const std::string channel, const std::string tag)
 Add tag to channel.
 

Detailed Description

Log manager.

Logging manager based on Boost.Log (Boost.Log v2)

Macro Definition Documentation

◆ MOFEM_LOG

#define MOFEM_LOG ( channel,
severity )    BOOST_LOG_SEV(MoFEM::LogManager::getLog(channel), severity)

Log.

MOFEM_LOG("WORLD", LogManager::SeverityLevel::inform) << "Hello world";
#define MOFEM_LOG(channel, severity)
Log.
Examples
ADOLCPlasticityMaterialModels.hpp, EshelbianPlasticity.cpp, PoissonDiscontinousGalerkin.hpp, add_cubit_meshsets.cpp, adolc_plasticity.cpp, approx_sphere.cpp, build_large_problem.cpp, child_and_parent.cpp, continuity_check_on_skeleton_3d.cpp, continuity_check_on_skeleton_with_simple_2d_for_h1.cpp, continuity_check_on_skeleton_with_simple_2d_for_hcurl.cpp, dg_projection.cpp, dm_build_partitioned_mesh.cpp, dynamic_first_order_con_law.cpp, eigen_elastic.cpp, elasticity.cpp, ep.cpp, field_evaluator.cpp, forces_and_sources_testing_users_base.cpp, free_surface.cpp, hanging_node_approx.cpp, hdiv_divergence_operator.cpp, heat_equation.cpp, hello_world.cpp, helmholtz.cpp, higher_derivatives.cpp, level_set.cpp, log.cpp, matrix_function.cpp, mixed_poisson.cpp, mortar_contact_thermal.cpp, operators_tests.cpp, phase.cpp, photon_diffusion.cpp, plastic.cpp, plate.cpp, plot_base.cpp, poisson_2d_dis_galerkin.cpp, remove_entities_from_problem.cpp, remove_entities_from_problem_not_partitioned.cpp, scalar_check_approximation.cpp, seepage.cpp, shallow_wave.cpp, simple_contact_thermal.cpp, simple_l2_only.cpp, split_sideset.cpp, tensor_divergence_operator.cpp, test_cache_on_entities.cpp, thermo_elastic.cpp, and wave_equation.cpp.

Definition at line 308 of file LogManager.hpp.

308#define MOFEM_LOG(channel, severity) \
309 BOOST_LOG_SEV(MoFEM::LogManager::getLog(channel), severity)

◆ MOFEM_LOG_ATTRIBUTES

#define MOFEM_LOG_ATTRIBUTES ( channel,
bit )    { MoFEM::LogManager::addAttributes(channel, bit); }

Add attributes to channel.

MOFEM_LOG_ATTRIBUTES("SYNC", LogManager::BitLineID | LogManager::BitScope);
#define MOFEM_LOG_ATTRIBUTES(channel, bit)
Add attributes to channel.
Examples
add_cubit_meshsets.cpp, continuity_check_on_skeleton_with_simple_2d_for_h1.cpp, log.cpp, and matrix_function.cpp.

Definition at line 296 of file LogManager.hpp.

296#define MOFEM_LOG_ATTRIBUTES(channel, bit) \
297 { MoFEM::LogManager::addAttributes(channel, bit); }

◆ MOFEM_LOG_CHANNEL

#define MOFEM_LOG_CHANNEL ( channel)     { MoFEM::LogManager::setLog(channel); }

Set and reset channel.

#define MOFEM_LOG_CHANNEL(channel)
Set and reset channel.

Are three default type of channels, SELF, each processor prints to the standard output, WORLD, only processor one prints, and SYNC all processors prints synchronously.

Examples
PlasticOps.hpp, ThermoElasticOps.hpp, add_cubit_meshsets.cpp, adolc_plasticity.cpp, build_large_problem.cpp, free_surface.cpp, hcurl_divergence_operator_2d.cpp, log.cpp, partition_mesh.cpp, phase.cpp, plastic.cpp, remove_entities_from_problem_not_partitioned.cpp, seepage.cpp, test_cache_on_entities.cpp, and thermo_elastic.cpp.

Definition at line 284 of file LogManager.hpp.

284#define MOFEM_LOG_CHANNEL(channel) \
285 { MoFEM::LogManager::setLog(channel); }

◆ MOFEM_LOG_FUNCTION

#define MOFEM_LOG_FUNCTION ( )
Value:
BOOST_LOG_NAMED_SCOPE_INTERNAL( \
BOOST_LOG_UNIQUE_IDENTIFIER_NAME(_boost_log_named_scope_sentry_), \
PETSC_FUNCTION_NAME, __FILE__, __LINE__, \
::boost::log::attributes::named_scope_entry::function)

Set scope.

Macro for function scope markup. The scope name is constructed with help of compiler and contains the current function signature. The scope name is pushed to the end of the current thread scope list.

Not all compilers have support for this macro. The exact form of the scope name may vary from one compiler to another.

Examples
continuity_check_on_skeleton_with_simple_2d_for_h1.cpp, and log.cpp.

Definition at line 325 of file LogManager.hpp.

325#define MOFEM_LOG_FUNCTION() \
326 BOOST_LOG_NAMED_SCOPE_INTERNAL( \
327 BOOST_LOG_UNIQUE_IDENTIFIER_NAME(_boost_log_named_scope_sentry_), \
328 PETSC_FUNCTION_NAME, __FILE__, __LINE__, \
329 ::boost::log::attributes::named_scope_entry::function)

◆ MOFEM_LOG_TAG

#define MOFEM_LOG_TAG ( channel,
tag )   MoFEM::LogManager::addTag(channel, tag);

Enumeration Type Documentation

◆ LogAttributesBits

Tag attributes switches.

Enumerator
BitLineID 
BitScope 

Definition at line 47 of file LogManager.hpp.

47 {
48 BitLineID = 1 << 0,
49 BitScope = 1 << 1,
50 };

◆ SeverityLevel

Severity levels.

Enumerator
noisy 
verbose 
inform 
warning 
error 

Definition at line 33 of file LogManager.hpp.

Function Documentation

◆ addAttributes() [1/2]

void MoFEM::LogManager::addAttributes ( const std::string channel,
const int bit = 0 )
static

Add attributes to channel.

Parameters
channel
bit

Definition at line 377 of file LogManager.cpp.

377 {
378 addAttributes(getLog(channel), bit);
379}
static void addAttributes(LogManager::LoggerType &lg, const int bit=0)
Add attributes to logger.
static LoggerType & getLog(const std::string channel)
Get logger by channel.
auto bit
set bit

◆ addAttributes() [2/2]

void MoFEM::LogManager::addAttributes ( LogManager::LoggerType & lg,
const int bit = 0 )
static

Add attributes to logger.

Parameters
lg
bit

Definition at line 359 of file LogManager.cpp.

359 {
360
361 if (bit == 0)
362 return;
363
364 if (bit & (BitLineID | BitScope)) {
365
366 if (bit & BitLineID)
367 lg.add_attribute("LineID", attrs::counter<unsigned int>(1));
368
369 if (bit & BitScope)
370 lg.add_attribute("Scope", attrs::named_scope());
371
372 } else {
373 THROW_MESSAGE("Wrong cast");
374 }
375}
#define THROW_MESSAGE(msg)
Throw MoFEM exception.

◆ addTag() [1/2]

void MoFEM::LogManager::addTag ( const std::string channel,
const std::string tag )
static

Add tag to channel.

Parameters
channel
tag

Definition at line 385 of file LogManager.cpp.

385 {
386 getLog(channel).add_attribute("Tag", attrs::constant<std::string>(tag));
387}

◆ addTag() [2/2]

void MoFEM::LogManager::addTag ( LogManager::LoggerType & lg,
const std::string tag )
static

Add tag to logger.

Parameters
lg
tag

Definition at line 381 of file LogManager.cpp.

381 {
382 lg.add_attribute("Tag", attrs::constant<std::string>(tag));
383}

◆ getLog()

LogManager::LoggerType & MoFEM::LogManager::getLog ( const std::string channel)
static

Get logger by channel.

Parameters
channel
Returns
LoggerType&

Definition at line 395 of file LogManager.cpp.

395 {
396 auto it = InternalData::logChannels.find(channel);
397 if (it == InternalData::logChannels.end()) {
399 "Channel <" + channel + "> not found");
400 }
401 return it->second;
402}
#define CHK_THROW_MESSAGE(err, msg)
Check and throw MoFEM exception.
@ MOFEM_DATA_INCONSISTENCY
Definition definitions.h:31
static std::map< std::string, LoggerType > logChannels

◆ setLog()

LogManager::LoggerType & MoFEM::LogManager::setLog ( const std::string channel)
static

Set ans resset chanel logger.

Parameters
channel
Returns
LoggerType&

Definition at line 389 of file LogManager.cpp.

389 {
391 LoggerType(boost::log::keywords::channel = channel);
392 return InternalData::logChannels[channel];
393}
boost::log::sources::severity_channel_logger< SeverityLevel, std::string > LoggerType
Definition of the channel logger.