12#ifndef ZYPP_BASE_LOGGER_H
13#define ZYPP_BASE_LOGGER_H
31 TraceLeave(
const char * file_r,
const char * fnc_r,
int line_r );
39#define TRACE ::zypp::debug::TraceLeave _TraceLeave( __FILE__, __FUNCTION__, __LINE__ )
44 Osd( std::ostream &,
int = 0 );
50 _strout << std::forward<Tp>(val);
51 _strlog << std::forward<Tp>(val);
55 Osd &
operator<<( std::ostream& (*iomanip)( std::ostream& ) );
61#define OSD ::zypp::debug::Osd(L_USR("OSD"))
89#ifndef ZYPP_BASE_LOGGER_LOGGROUP
91#define ZYPP_BASE_LOGGER_LOGGROUP "DEFINE_LOGGROUP"
94#define XXX L_XXX( ZYPP_BASE_LOGGER_LOGGROUP )
95#define DBG L_DBG( ZYPP_BASE_LOGGER_LOGGROUP )
96#define MIL L_MIL( ZYPP_BASE_LOGGER_LOGGROUP )
97#define WAR L_WAR( ZYPP_BASE_LOGGER_LOGGROUP )
98#define ERR L_ERR( ZYPP_BASE_LOGGER_LOGGROUP )
99#define SEC L_SEC( ZYPP_BASE_LOGGER_LOGGROUP )
100#define INT L_INT( ZYPP_BASE_LOGGER_LOGGROUP )
101#define USR L_USR( ZYPP_BASE_LOGGER_LOGGROUP )
103#define L_XXX(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_XXX )
104#define L_DBG(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP"++", zypp::base::logger::E_MIL )
105#define L_MIL(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_MIL )
106#define L_WAR(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_WAR )
107#define L_ERR(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_ERR )
108#define L_SEC(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_SEC )
109#define L_INT(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_INT )
110#define L_USR(GROUP) ZYPP_BASE_LOGGER_LOG( GROUP, zypp::base::logger::E_USR )
113#define L_ENV_CONSTR_DEFINE_FUNC(ENV) \
114 namespace zypp::log { \
115 bool has_env_constr_##ENV () \
117 static bool has_##ENV = (::getenv(#ENV) != NULL); \
120 const char *empty_or_group_if_##ENV ( const char *group ) \
122 return has_env_constr_##ENV() ? group : nullptr; \
126#define L_ENV_CONSTR_FWD_DECLARE_FUNC(ENV) namespace zypp::log { bool has_env_constr_##ENV (); const char *empty_or_group_if_##ENV ( const char *group ); }
127#define L_ENV_CONSTR(ENV,GROUP,LEVEL) ZYPP_BASE_LOGGER_LOG( zypp::log::empty_or_group_if_##ENV( GROUP ), LEVEL )
129#define L_BASEFILE ( *__FILE__ == '/' ? strrchr( __FILE__, '/' ) + 1 : __FILE__ )
132#define ZYPP_BASE_LOGGER_LOG(GROUP,LEVEL) \
133 zypp::base::logger::getStream( GROUP, LEVEL, L_BASEFILE, __FUNCTION__, __LINE__ )
173 extern std::ostream &
getStream(
const char * group_r,
LogLevel
Definition of log levels.
@ E_SEC
Secutrity related.
@ E_XXX
Excessive logging.
std::ostream & getStream(const char *group_r, LogLevel level_r, const char *file_r, const char *func_r, const int line_r)
Return a log stream to write on.
Easy-to use interface to the ZYPP dependency resolver.
Osd(std::ostream &, int=0)
Osd & operator<<(Tp &&val)
TraceLeave(const TraceLeave &)=delete
TraceLeave & operator=(const TraceLeave &)=delete