Namespaces | |
namespace | defs |
namespace | detail |
namespace | exception |
A namespace for all exceptions to live in - this will hopefully make documentation a bit clearer. | |
namespace | grammars |
namespace | tests |
namespace | utilities |
Classes | |
class | _Integer |
Forward declare an ultra-lightweight wrapper which does formatting of numbers only on demand. More... | |
class | _Integer< T, IntFmt< bin, fixed, WIDTH > > |
class | _Integer< T, IntFmt< bin, variable, WIDTH > > |
class | _Integer< T, IntFmt< dec, fixed, WIDTH > > |
class | _Integer< T, IntFmt< dec, variable, WIDTH > > |
class | _Integer< T, IntFmt< hex, fixed, WIDTH > > |
class | _Integer< T, IntFmt< hex, variable, WIDTH > > |
class | _Quote |
class | _Quote< const char * > |
class | _Time |
Forward declaration. More... | |
class | _Type |
struct | _ValHeader_ |
A helper struct wrapping an IPbus header and a valid flag. More... | |
struct | _ValVector_ |
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and a valid flag. More... | |
struct | _ValWord_ |
A Template helper struct wrapping an IPbus header, a register for storing a single word of data, a valid flag and a mask for modifying returned values. More... | |
class | BaseFunctionObject |
Abstract base class for wrapping function pointers, function objects and bound functions as objects. More... | |
class | BaseLogLevel |
class | Buffers |
A class wrapping the send and recieve buffers that are to be filled and transported and the validated memories associated with them. More... | |
class | ClientFactory |
A class to construct an IPbus client based on the protocol identifier specified NOTE! This is a factory method and must be Mutex protected if it is used in multithreaded environments! More... | |
class | ClientInterface |
An abstract base class for defining the interface to the various IPbus clients as well as providing the generalized packing functionality. More... | |
class | ConnectionManager |
A class to open and manage XML connection files and wrap up the interfaces to the NodeTreeBuilder and the ClientFactory. More... | |
class | ControlHub |
Transport protocol to transfer an IPbus buffer via ControlHub. More... | |
class | DebugLevel |
Helper struct representing the Debug log level to allow us to specialize functions according to their log level. More... | |
class | DerivedNodeFactory |
A singleton class to register derived nodes, and create instances of them later NOTE! This is a factory method and must be Mutex protected if it is used in multithreaded environments! More... | |
class | ErrorLevel |
Helper struct representing the Error log level to allow us to specialize functions according to their log level. More... | |
class | FatalLevel |
Helper struct representing the Fatal log level to allow us to specialize functions according to their log level. More... | |
class | FunctionObject |
Class for wrapping bound functions and function objects as an object. More... | |
class | FunctionObject< R, T * > |
Class for wrapping function pointer as an object. More... | |
class | HostToTargetInspector |
Helper class to decode IPbus packets as passed from the Client to the Target. More... | |
struct | HttpResponseType |
Struct to store an http response received from a server when parsed by boost spirit. More... | |
class | HwInterface |
A class which bundles a node tree and an IPbus client interface together providing everything you need to navigate and perform hardware access. More... | |
class | InfoLevel |
Helper struct representing the Info log level to allow us to specialize functions according to their log level. More... | |
struct | IntFmt |
Empty struct which acts as a dummy variable for passing the formatting information around. More... | |
class | IPbus |
A class which provides the version-specific functionality for IPbus. More... | |
class | IPbus< 1, IPbus_minor > |
A class which provides the version-specific functionality for IPbus. More... | |
class | IPbus< 2, IPbus_minor > |
A class which provides the version-specific functionality for IPbus. More... | |
class | IPbusCore |
A class providing the core IPbus packing functionality. More... | |
class | Location |
A class to wrap the function name, filename and line-number location of its construction for the purpose of debugging and tracking unwinding exceptions. More... | |
class | log_configuration |
Class to restrict access to the log configuration parameters. More... | |
class | Mmap |
Transport protocol to transfer an IPbus buffer via device file, using mmap. More... | |
class | Node |
A heirarchical node for navigating heirarchical firmwares. More... | |
class | NodeTreeBuilder |
A class to build a node tree from an address table file. More... | |
struct | NodeTreeClassAttribute |
Struct to store the name and member variables within a node class attribute when parsed by boost spirit The class attribute has the form "classname;name1=val1;name2=val2;name3=val3;" where the name-value pairs are optional, as is the trailing semicolon. More... | |
struct | NodeTreeFirmwareInfoAttribute |
Struct to store the name and member variables within a node endpoint attribute when parsed by boost spirit The endpoint attribute has the form "endpoint;name1=val1;name2=val2;name3=val3;" where the name-value pairs are optional, as is the trailing semicolon. More... | |
class | NoticeLevel |
Helper struct representing the Notice log level to allow us to specialize functions according to their log level. More... | |
class | Parser |
Forward declaration of the Parser so we can declare it friend. More... | |
class | PCIe |
Transport protocol to transfer an IPbus buffer via PCIe. More... | |
class | RefWrapper |
class | RefWrapper< T * > |
struct | RegistrationHelper |
Experimental!! Helper struct for adding the DerivedNode to the Node Factory Declaring an instance of an object at global scope means that it is created before the main code is entered We can use this to our advantage by using the constructor of this object to add entries to the factory in a distributed fashion (for instance, in the file where the derived node is defined), rather than manually having to add entries in one file To make things even simpler, the REGISTER macro expands the template argument to a string and passes it to the constructor. More... | |
class | Rule |
Rule for matching XML attributes. More... | |
class | SigBusGuard |
class | TargetToHostInspector |
Helper class to decode IPbus packets as passed from the Target to the Client. More... | |
class | TCP |
Transport protocol to transfer an IPbus buffer via TCP. More... | |
class | ThisThreadID |
struct | TimeFmt |
A struct whose template parameters represent a time format. More... | |
class | TimeIntervalStats |
struct | TranslatedFmt |
class | UDP |
Transport protocol to transfer an IPbus buffer via UDP. More... | |
struct | URI |
Struct to store a URI when parsed by boost spirit. More... | |
class | ValHeader |
A class which wraps a single word of data and marks whether or not it is valid. More... | |
class | ValVector |
A class which wraps a block of data and marks whether or not it is valid. More... | |
class | ValWord |
A class which wraps a single word of data and marks whether or not it is valid. More... | |
class | WarningLevel |
Helper struct representing the Warning log level to allow us to specialize functions according to their log level. More... | |
Typedefs | |
typedef std::vector< std::pair< std::string, std::string > > | NameValuePairVectorType |
boost::fusion requires us to typedef our template types, so typedef a container which can hold key/value pairs More... | |
typedef TimeFmt< day,'/', mth,'/', year,' ', hr,':', min,':', sec > | DefaultTimeFmt |
Typedef the most commonly used time format (day/month/year hour:minut:second) for convenience. More... | |
Enumerations | |
enum | integer_base { bin , dec , hex } |
Enumerated type specifying the formatting option. More... | |
enum | integer_format { fixed , variable } |
Enumerated type specifying the formatting option. More... | |
enum | time_element { null , year , yr , strmth , mth , day , hr , min , sec , usec } |
Enumerated type defining the different elements which can be used for formatting a time. More... | |
enum | IPbusTransactionType { B_O_T , READ , WRITE , RMW_BITS , RMW_SUM , R_A_I , NI_READ , NI_WRITE , CONFIG_SPACE_READ } |
Enumerated type to define the IPbus transaction type. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::HttpResponseType &aHttpResponse) |
std::ostream & | operator<< (std::ostream &aStr, const uhal::URI &aURI) |
std::string | toString (const URI &aURI) |
void | setLogLevelFromEnvironment (const char *aEnvVar) |
Function to specify that the logging level should be retrieved from an environment variable. More... | |
void | disableLogging () |
Function to disable all logging levels. More... | |
std::mutex & | GetLoggingMutex () |
Function to retrieve the mutex lock used by the logger. More... | |
void | setLogLevelTo (const FatalLevel &) |
Function to specify, at runtime, that only messages with a severity level above Fatal should be logged. More... | |
const bool & | LoggingIncludes (const FatalLevel &) |
Function to check at runtime whether the level Fatal is to be included in the log output. More... | |
void | setLogLevelTo (const ErrorLevel &) |
Function to specify, at runtime, that only messages with a severity level above Error should be logged. More... | |
const bool & | LoggingIncludes (const ErrorLevel &) |
Function to check at runtime whether the level Error is to be included in the log output. More... | |
void | setLogLevelTo (const WarningLevel &) |
Function to specify, at runtime, that only messages with a severity level above Warning should be logged. More... | |
const bool & | LoggingIncludes (const WarningLevel &) |
Function to check at runtime whether the level Warning is to be included in the log output. More... | |
void | setLogLevelTo (const NoticeLevel &) |
Function to specify, at runtime, that only messages with a severity level above Notice should be logged. More... | |
const bool & | LoggingIncludes (const NoticeLevel &) |
Function to check at runtime whether the level Notice is to be included in the log output. More... | |
void | setLogLevelTo (const InfoLevel &) |
Function to specify, at runtime, that only messages with a severity level above Info should be logged. More... | |
const bool & | LoggingIncludes (const InfoLevel &) |
Function to check at runtime whether the level Info is to be included in the log output. More... | |
void | setLogLevelTo (const DebugLevel &) |
Function to specify, at runtime, that only messages with a severity level above Debug should be logged. More... | |
const bool & | LoggingIncludes (const DebugLevel &) |
Function to check at runtime whether the level Debug is to be included in the log output. More... | |
template<typename T0 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (FatalLevel &aFatal, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Fatal level. More... | |
template<typename T0 > | |
void | log (ErrorLevel &aError, const T0 &aArg0) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Error level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (ErrorLevel &aError, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Error level. More... | |
template<typename T0 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Warning level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (WarningLevel &aWarning, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Warning level. More... | |
template<typename T0 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Notice level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (NoticeLevel &aNotice, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Notice level. More... | |
template<typename T0 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Info level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (InfoLevel &aInfo, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Info level. More... | |
template<typename T0 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
Function to add a log entry at Debug level. More... | |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (DebugLevel &aDebug, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
Function to add a log entry at Debug level. More... | |
template<typename T0 > | |
void | log (exception::exception &aExc, const T0 &aArg0) |
template<typename T0 , typename T1 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1) |
template<typename T0 , typename T1 , typename T2 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2) |
template<typename T0 , typename T1 , typename T2 , typename T3 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30) |
template<typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19 , typename T20 , typename T21 , typename T22 , typename T23 , typename T24 , typename T25 , typename T26 , typename T27 , typename T28 , typename T29 , typename T30 , typename T31 > | |
void | log (exception::exception &aExc, const T0 &aArg0, const T1 &aArg1, const T2 &aArg2, const T3 &aArg3, const T4 &aArg4, const T5 &aArg5, const T6 &aArg6, const T7 &aArg7, const T8 &aArg8, const T9 &aArg9, const T10 &aArg10, const T11 &aArg11, const T12 &aArg12, const T13 &aArg13, const T14 &aArg14, const T15 &aArg15, const T16 &aArg16, const T17 &aArg17, const T18 &aArg18, const T19 &aArg19, const T20 &aArg20, const T21 &aArg21, const T22 &aArg22, const T23 &aArg23, const T24 &aArg24, const T25 &aArg25, const T26 &aArg26, const T27 &aArg27, const T28 &aArg28, const T29 &aArg29, const T30 &aArg30, const T31 &aArg31) |
template<typename T > | |
void | log_inserter (const T &) |
static const integer_base | DefaultIntegerBase (dec) |
Constant which is the default formatting option. More... | |
static const integer_format | DefaultIntegerFormat (variable) |
Constant which is the default formatting option. More... | |
template<typename T > | |
_Integer< T, IntFmt<> > | Integer (const T &aT) |
Forward declare a function which creates an instance of the ultra-lightweight wrapper from an integer. More... | |
template<typename T , integer_base BASE, integer_format FORMAT, uint32_t WIDTH> | |
_Integer< T, IntFmt< BASE, FORMAT, WIDTH > > | Integer (const T &aT, const IntFmt< BASE, FORMAT, WIDTH > &aFmt) |
Forward declare a function which creates an instance of the ultra-lightweight wrapper from an integer. More... | |
template<typename T > | |
void | sign_helper (std::ostream &aStr, const T &aInt) |
Helper function for adding the '+'/'-' sign. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int8_t &aInt) |
Helper function for adding the '+'/'-' sign to int8_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int16_t &aInt) |
Helper function for adding the '+'/'-' sign to int16_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int32_t &aInt) |
Helper function for adding the '+'/'-' sign to int32_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int64_t &aInt) |
Helper function for adding the '+'/'-' sign to int64_ts. More... | |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< uint8_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< int8_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< uint16_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< int16_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< uint32_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< int32_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< uint64_t, FORMAT > &aInt) |
template<typename FORMAT > | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::_Integer< int64_t, FORMAT > &aInt) |
std::ostream & | operator<< (std::ostream &aStr, const Location &aLocation) |
template<typename T > | |
_Quote< T > | Quote (const T &aT) |
_Quote< const char * > | Quote (const char *aStr) |
template<typename T > | |
std::ostream & | operator<< (std::ostream &aStr, const _Quote< T > &aQuote) |
std::ostream & | operator<< (std::ostream &aStr, const ThisThreadID &aThisThreadID) |
_Time< DefaultTimeFmt > | Time (const timeval &aTime) |
Helper function which wrap the template uglyness in a pretty package. More... | |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4, char D4, time_element T5, char D5, time_element T6> | |
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5, D5, T6 > > | Time (const timeval &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4, char D4, time_element T5> | |
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5,' ', null > > | Time (const timeval &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4> | |
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4,' ', null,' ', null > > | Time (const timeval &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3> | |
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3,' ', null,' ', null,' ', null > > | Time (const timeval &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2> | |
_Time< TimeFmt< T0, D0, T1, D1, T2,' ', null,' ', null,' ', null,' ', null > > | Time (const timeval &aTime) |
template<time_element T0, char D0, time_element T1> | |
_Time< TimeFmt< T0, D0, T1,' ', null,' ', null,' ', null,' ', null,' ', null > > | Time (const timeval &aTime) |
template<time_element T0> | |
_Time< TimeFmt< T0,' ', null,' ', null,' ', null,' ', null,' ', null,' ', null > > | Time (const timeval &aTime) |
template<typename FORMAT > | |
_Time< FORMAT > | Time (const timeval &aTime, const FORMAT &aFmt) |
Helper function which wrap the template uglyness in a pretty package. More... | |
template<time_element T> | |
void | print (std::ostream &aStr, const tm *aTm, const uint32_t &aUsec) |
Format a time element for for sending to the log. More... | |
timeval | Now () |
A helper function to return the current time. More... | |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4, char D4, time_element T5, char D5, time_element T6> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5, D5, T6 > > &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4, char D4, time_element T5> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5,' ', null > > &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3, char D3, time_element T4> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4,' ', null,' ', null > > &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2, char D2, time_element T3> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3,' ', null,' ', null,' ', null > > &aTime) |
template<time_element T0, char D0, time_element T1, char D1, time_element T2> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1, D1, T2,' ', null,' ', null,' ', null,' ', null > > &aTime) |
template<time_element T0, char D0, time_element T1> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0, D0, T1,' ', null,' ', null,' ', null,' ', null,' ', null > > &aTime) |
template<time_element T0> | |
std::ostream & | operator<< (std::ostream &aStr, const _Time< TimeFmt< T0,' ', null,' ', null,' ', null,' ', null,' ', null,' ', null > > &aTime) |
template<typename T > | |
_Type< T > | Type () |
template<typename T > | |
_Type< T > | Type (const T &aT) |
template<typename T > | |
std::ostream & | operator<< (std::ostream &aStr, const _Type< T > &aType) |
template<typename U > | |
void | insert (std::ostream &aStr, const U &aU) |
template<> | |
void | sign_helper (std::ostream &aStr, const int8_t &aInt) |
Helper function for adding the '+'/'-' sign to int8_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int16_t &aInt) |
Helper function for adding the '+'/'-' sign to int16_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int32_t &aInt) |
Helper function for adding the '+'/'-' sign to int32_ts. More... | |
template<> | |
void | sign_helper (std::ostream &aStr, const int64_t &aInt) |
Helper function for adding the '+'/'-' sign to int64_ts. More... | |
template<> | |
void | print< year > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< yr > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< strmth > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< mth > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< day > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< hr > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< min > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< sec > (std::ostream &aStr, const tm *aTm, const uint32_t &) |
template<> | |
void | print< usec > (std::ostream &aStr, const tm *, const uint32_t &aUsec) |
void | insert (std::ostream &aStr, const uint32_t &aUint) |
void | insert (std::ostream &aStr, const int32_t &aInt) |
void | insert (std::ostream &aStr, const bool &aBool) |
def | _ValWord_to_long (self) |
Pythonic additions to the ValWord_uint32 API. More... | |
def | _add_int_method_to_ValWord (method_name, unary=False) |
def | _add_int_methods_to_ValWord (method_names, unary=False) |
std::ostream & | operator<< (std::ostream &aStream, const std::pair< const Node *, const Node * > &aNodes) |
std::ostream & | operator<< (std::ostream &aStr, const uhal::Node &aNode) |
std::pair< uint32_t, uint16_t > | ExtractTargetID (const URI &aUri) |
Extract an IP-address and port number from a URI object. More... | |
std::ostream & | operator<< (std::ostream &aStr, const uhal::IPbusTransactionType &aIPbusTransactionType) |
Streaming operator for formatting objects of the uhal::IPbusTransactionType. More... | |
template<typename T > | |
std::ostream & | operator<< (std::ostream &aStream, const TranslatedFmt< T > &aFmt) |
std::ostream & | operator<< (std::ostream &, const TimeIntervalStats &) |
Variables | |
FatalLevel | Fatal |
ErrorLevel | Error |
WarningLevel | Warning |
NoticeLevel | Notice |
InfoLevel | Info |
DebugLevel | Debug |
string | message = 'Failed to load uHAL bindings.' |
__long__ | |
__index__ | |
unary | |
Typedef the most commonly used time format (day/month/year hour:minut:second) for convenience.
Definition at line 78 of file log_inserters.time.hpp.
typedef std::vector< std::pair< std::string, std::string > > uhal::NameValuePairVectorType |
boost::fusion requires us to typedef our template types, so typedef a container which can hold key/value pairs
Definition at line 50 of file NodeTreeClassAttributeGrammar.hpp.
enum uhal::integer_base |
Enumerated type specifying the formatting option.
Enumerator | |
---|---|
bin | Binary. |
dec | Decimal. |
hex | Hexadecimal. |
Definition at line 47 of file log_inserters.integer.hpp.
enum uhal::integer_format |
Enumerated type specifying the formatting option.
Enumerator | |
---|---|
fixed | Fixed width. |
variable | Variable width. |
Definition at line 55 of file log_inserters.integer.hpp.
Enumerated type to define the IPbus transaction type.
Note that they are stored here as (raw_type << 3) so that the LSL operation does not need to be performed every time a new transaction is created
Enumerator | |
---|---|
B_O_T | |
READ | |
WRITE | |
RMW_BITS | |
RMW_SUM | |
R_A_I | |
NI_READ | |
NI_WRITE | |
CONFIG_SPACE_READ |
Definition at line 72 of file ProtocolIPbusCore.hpp.
enum uhal::time_element |
Enumerated type defining the different elements which can be used for formatting a time.
Definition at line 54 of file log_inserters.time.hpp.
|
private |
Definition at line 27 of file __init__.py.
References getattr(), isinstance(), and setattr().
Referenced by _add_int_methods_to_ValWord().
|
private |
Definition at line 47 of file __init__.py.
References _add_int_method_to_ValWord().
|
private |
Pythonic additions to the ValWord_uint32 API.
Definition at line 20 of file __init__.py.
|
static |
Constant which is the default formatting option.
|
static |
Constant which is the default formatting option.
void uhal::disableLogging | ( | ) |
Function to disable all logging levels.
Definition at line 64 of file log.cpp.
Referenced by main(), and pycohal::wrap_logging_functions().
std::pair< uint32_t, uint16_t > uhal::ExtractTargetID | ( | const URI & | aUri | ) |
Extract an IP-address and port number from a URI object.
aUri | a URI object to be parsed |
Definition at line 51 of file ProtocolControlHub.cpp.
References Info, Integer(), log(), uhal::URI::mArguments, and Quote().
Referenced by uhal::ControlHub< InnerProtocol >::ControlHub().
std::mutex & uhal::GetLoggingMutex | ( | ) |
void uhal::insert | ( | std::ostream & | aStr, |
const bool & | aBool | ||
) |
Definition at line 22 of file LogLevels.cpp.
void uhal::insert | ( | std::ostream & | aStr, |
const int32_t & | aInt | ||
) |
Definition at line 17 of file LogLevels.cpp.
void uhal::insert | ( | std::ostream & | aStr, |
const U & | aU | ||
) |
Definition at line 25 of file LogLevels.hpp.
Referenced by log().
void uhal::insert | ( | std::ostream & | aStr, |
const uint32_t & | aUint | ||
) |
Definition at line 12 of file LogLevels.cpp.
Forward declare a function which creates an instance of the ultra-lightweight wrapper from an integer.
Definition at line 43 of file log_inserters.integer.hxx.
Referenced by uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::analyze(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::analyze(), uhal::SigBusGuard::blockSIGBUS(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::bot(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::bot(), uhal::NodeTreeBuilder::calculateHierarchicalAddresses(), uhal::tests::PerfTester::QueuedBlockRead::check_values(), uhal::tests::PerfTester::QueuedBlockWrite::check_values(), uhal::tests::PerfTester::QueuedRmwBits::check_values(), uhal::tests::PerfTester::QueuedRmwSum::check_values(), uhal::Mmap::File::close(), uhal::PCIe::File::close(), uhal::Mmap::connect(), uhal::PCIe::connect(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::control_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::control_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::control_packet_header(), uhal::PCIe::File::createBuffer(), uhal::ClientInterface::dispatch(), uhal::IPbus< 1, IPbus_minor >::ExtractHeader(), uhal::IPbus< 2, IPbus_minor >::ExtractHeader(), ExtractTargetID(), uhal::tests::PCIeDummyHardware::fifoRead(), uhal::tests::PCIeDummyHardware::fileWrite(), uhal::NodeTreeBuilder::getNodeTree(), uhal::tests::PerfTester::getRandomBlockSize(), uhal::IPbusCore::implementRead(), uhal::IPbusCore::implementReadBlock(), uhal::IPbusCore::implementReadConfigurationSpace(), uhal::IPbusCore::implementRMWbits(), uhal::IPbusCore::implementRMWsum(), uhal::IPbusCore::implementWrite(), uhal::IPbusCore::implementWriteBlock(), uhal::exception::IPbusCoreResponseCodeSet::IPbusCoreResponseCodeSet(), uhal::tests::job_multiple(), uhal::detail::RobustSessionMutex::lock(), uhal::Mmap::File::lock(), uhal::PCIe::File::lock(), main(), uhal::Mmap::Mmap(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::Mmap::File::open(), uhal::PCIe::File::open(), uhal::Parser< R >::operator()(), uhal::tests::PCIeDummyHardware::PCIeDummyHardware(), uhal::utilities::PugiXMLParseResultPrettifier(), uhal::Mmap::read(), uhal::PCIe::read(), uhal::UDP< InnerProtocol >::read(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::read(), uhal::Mmap::File::read(), uhal::PCIe::File::read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read_callback(), uhal::UDP< InnerProtocol >::read_callback(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::readConfigurationSpace(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::resend_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::detail::RobustSessionMutex::RobustSessionMutex(), uhal::tests::PCIeDummyHardware::run(), uhal::tests::PerfTester::runValidationTest(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::tests::UHAL_TESTS_DEFINE_CLIENT_TEST_CASES(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::unknown_type(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::detail::RobustSessionMutex::unlock(), uhal::Mmap::File::unlock(), uhal::PCIe::File::unlock(), uhal::ControlHub< InnerProtocol >::validate(), uhal::IPbus< 2, IPbus_minor >::validate(), uhal::IPbusCore::validate(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::write(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write(), uhal::UDP< InnerProtocol >::write(), uhal::Mmap::write(), uhal::PCIe::write(), uhal::ClientInterface::write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::write(), uhal::Mmap::File::write(), uhal::PCIe::File::write(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write_callback(), uhal::UDP< InnerProtocol >::write_callback(), and uhal::SigBusGuard::~SigBusGuard().
_Integer< T, IntFmt< BASE, FORMAT, WIDTH > > uhal::Integer | ( | const T & | aT, |
const IntFmt< BASE, FORMAT, WIDTH > & | aFmt | ||
) |
Forward declare a function which creates an instance of the ultra-lightweight wrapper from an integer.
Definition at line 48 of file log_inserters.integer.hxx.
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 5398 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 5422 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 5447 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 5473 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 5500 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 5528 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 5557 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 5587 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 5618 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 5650 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 5683 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 5717 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 5752 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 5788 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 5825 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 5863 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 5902 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 5942 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 5983 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 6025 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 6068 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 6112 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 6157 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 6203 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 6250 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 6298 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 6347 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 6397 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 6448 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 6500 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 6553 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | DebugLevel & | aDebug, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Debug level.
aDebug | a dummy parameter to choose the specialization of the function for the Debug level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 6607 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 966 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 982 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 999 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 1017 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 1036 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 1056 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 1077 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 1099 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 1122 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 1146 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 1171 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 1197 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 1224 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 1252 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 1281 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 1311 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 1342 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 1374 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 1407 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 1441 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 1476 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 1512 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 1549 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 1587 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 1626 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 1666 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 1707 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 1749 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 1792 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 1836 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 1881 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | ErrorLevel & | aError, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Error level.
aError | a dummy parameter to choose the specialization of the function for the Error level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 1927 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 6666 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 6678 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 6691 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 6705 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 6720 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 6736 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 6753 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 6771 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 6790 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 6810 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 6831 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 6853 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 6876 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 6900 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 6925 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 6951 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 6978 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 7006 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 7035 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 7065 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 7096 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 7128 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 7161 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 7195 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 7230 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 7266 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 7303 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 7341 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 7380 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 7420 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 7461 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | exception::exception & | aExc, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 7503 of file log.hxx.
References uhal::exception::exception::append(), Error, GetLoggingMutex(), insert(), and log().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 18 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
Referenced by uhal::DerivedNodeFactory::add(), uhal::ClientFactory::add(), uhal::NodeTreeBuilder::addChildren(), uhal::Parser< R >::addRule(), uhal::Parser< uhal::Node * >::addRule(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::analyze(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::analyze(), uhal::ValVector< T >::at(), uhal::ValVector< uint32_t >::at(), uhal::NodeTreeBuilder::bitmaskNodeCreator(), uhal::SigBusGuard::blockSIGBUS(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::bot(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::bot(), uhal::IPbus< 1, IPbus_minor >::CalculateHeader(), uhal::IPbus< 2, IPbus_minor >::CalculateHeader(), uhal::NodeTreeBuilder::calculateHierarchicalAddresses(), uhal::ConnectionManager::CallBack(), uhal::NodeTreeBuilder::CallBack(), uhal::tests::PerfTester::QueuedBlockRead::check_values(), uhal::tests::PerfTester::QueuedBlockWrite::check_values(), uhal::tests::PerfTester::QueuedRmwBits::check_values(), uhal::tests::PerfTester::QueuedRmwSum::check_values(), uhal::ClientInterface::checkBufferSpace(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::CheckDeadline(), uhal::UDP< InnerProtocol >::CheckDeadline(), uhal::NodeTreeBuilder::checkForAddressCollisions(), uhal::ConnectionManager::clearAddressFileCache(), uhal::Mmap::File::close(), uhal::PCIe::File::close(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::connect(), uhal::UDP< InnerProtocol >::connect(), uhal::Mmap::connect(), uhal::PCIe::connect(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::control_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::control_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::control_packet_header(), uhal::DerivedNodeFactory::convertToClassType(), uhal::DerivedNodeFactory::Creator< T >::create(), uhal::PCIe::File::createBuffer(), uhal::ClientInterface::dispatch(), uhal::Mmap::dispatchExceptionHandler(), uhal::PCIe::dispatchExceptionHandler(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::dispatchExceptionHandler(), uhal::UDP< InnerProtocol >::dispatchExceptionHandler(), uhal::IPbus< 1, IPbus_minor >::ExtractHeader(), uhal::IPbus< 2, IPbus_minor >::ExtractHeader(), ExtractTargetID(), uhal::tests::PCIeDummyHardware::fifoRead(), uhal::tests::PCIeDummyHardware::fileWrite(), uhal::Mmap::Flush(), uhal::PCIe::Flush(), uhal::Rule< R >::forbid(), uhal::ClientFactory::getClient(), uhal::ConnectionManager::getDevice(), uhal::Node::getNode(), uhal::Node::getNodes(), uhal::NodeTreeBuilder::getNodeTree(), uhal::tests::PerfTester::getRandomBlockSize(), uhal::utilities::GetXMLattribute(), uhal::tests::TCPDummyHardware< IPbus_major, IPbus_minor >::handle_read_chunk_header(), uhal::tests::TCPDummyHardware< IPbus_major, IPbus_minor >::handle_read_chunk_payload(), uhal::utilities::HttpGet(), uhal::IPbusCore::implementBOT(), uhal::Mmap::implementDispatch(), uhal::PCIe::implementDispatch(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::implementDispatch(), uhal::UDP< InnerProtocol >::implementDispatch(), uhal::IPbusCore::implementRead(), uhal::IPbusCore::implementReadBlock(), uhal::IPbusCore::implementReadConfigurationSpace(), uhal::IPbusCore::implementRMWbits(), uhal::IPbusCore::implementRMWsum(), uhal::IPbusCore::implementWrite(), uhal::IPbusCore::implementWriteBlock(), uhal::exception::IPbusCoreResponseCodeSet::IPbusCoreResponseCodeSet(), uhal::tests::job_multiple(), uhal::detail::RobustSessionMutex::lock(), uhal::Mmap::File::lock(), uhal::PCIe::File::lock(), log(), main(), uhal::ValWord< uint32_t >::mask(), uhal::Mmap::Mmap(), uhal::NodeTreeBuilder::moduleNodeCreator(), uhal::tests::DummyHardware< 2, 0 >::ni_read(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::Mmap::File::open(), uhal::PCIe::File::open(), uhal::utilities::OpenFile(), uhal::utilities::OpenFileHttp(), uhal::utilities::OpenFileLocal(), uhal::Parser< R >::operator()(), uhal::tests::DummyHardwareOptions::parseFromCommandLine(), uhal::utilities::ParseSemicolonDelimitedUriList(), uhal::PCIe::PCIe(), uhal::tests::PCIeDummyHardware::PCIeDummyHardware(), uhal::NodeTreeBuilder::plainNodeCreator(), uhal::IPbus< 1, IPbus_minor >::predispatch(), uhal::SigBusGuard::protect(), uhal::utilities::PugiXMLParseResultPrettifier(), uhal::ValVector< uint32_t >::rbegin(), uhal::Mmap::read(), uhal::PCIe::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read(), uhal::UDP< InnerProtocol >::read(), uhal::Node::read(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::read(), uhal::Mmap::File::read(), uhal::PCIe::File::read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read_callback(), uhal::UDP< InnerProtocol >::read_callback(), uhal::Node::readBlock(), uhal::Node::readBlockOffset(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::readConfigurationSpace(), uhal::Rule< R >::require(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::resend_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::detail::RobustSessionMutex::RobustSessionMutex(), uhal::tests::PCIeDummyHardware::run(), uhal::tests::PerfTester::runValidationTest(), uhal::tests::DummyHardware< 2, 0 >::SetEndpoint(), setLogLevelFromEnvironment(), uhal::NodeTreeBuilder::setModeAndSize(), uhal::utilities::ShellExpandFilenameExpr(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::tests::PCIeDummyHardware::stop(), uhal::tests::UHAL_TESTS_DEFINE_CLIENT_TEST_CASES(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::unknown_type(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::detail::RobustSessionMutex::unlock(), uhal::Mmap::File::unlock(), uhal::PCIe::File::unlock(), uhal::ControlHub< InnerProtocol >::validate(), uhal::IPbus< 2, IPbus_minor >::validate(), uhal::IPbusCore::validate(), uhal::tests::PerfTester::validation_test_block_write_read(), uhal::ValWord< T >::value(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::write(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write(), uhal::UDP< InnerProtocol >::write(), uhal::Mmap::write(), uhal::PCIe::write(), uhal::ClientInterface::write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::write(), uhal::Node::write(), uhal::Mmap::File::write(), uhal::PCIe::File::write(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write_callback(), uhal::UDP< InnerProtocol >::write_callback(), uhal::Node::writeBlock(), uhal::Node::writeBlockOffset(), uhal::tests::PCIeDummyHardware::~PCIeDummyHardware(), uhal::SigBusGuard::~SigBusGuard(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::~TCP(), and uhal::UDP< InnerProtocol >::~UDP().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 32 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 47 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 63 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 80 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 98 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 117 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 137 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 158 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 180 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 203 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 227 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 252 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 278 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 305 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 333 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 362 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 392 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 423 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 455 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 488 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 522 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 557 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 593 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 630 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 668 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 707 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 747 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 788 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 830 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 873 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | FatalLevel & | aFatal, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Fatal level.
aFatal | a dummy parameter to choose the specialization of the function for the Fatal level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 917 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 4194 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 4216 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 4239 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 4263 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 4288 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 4314 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 4341 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 4369 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 4398 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 4428 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 4459 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 4491 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 4524 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 4558 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 4593 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 4629 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 4666 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 4704 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 4743 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 4783 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 4824 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 4866 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 4909 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 4953 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 4998 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 5044 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 5091 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 5139 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 5188 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 5238 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 5289 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | InfoLevel & | aInfo, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Info level.
aInfo | a dummy parameter to choose the specialization of the function for the Info level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 5341 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 3054 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 3074 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 3095 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 3117 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 3140 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 3164 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 3189 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 3215 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 3242 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 3270 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 3299 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 3329 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 3360 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 3392 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 3425 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 3459 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 3494 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 3530 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 3567 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 3605 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 3644 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 3684 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 3725 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 3767 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 3810 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 3854 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 3899 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 3945 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 3992 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 4040 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 4089 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | NoticeLevel & | aNotice, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Notice level.
aNotice | a dummy parameter to choose the specialization of the function for the Notice level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 4139 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
Definition at line 1978 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
Definition at line 1996 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
Definition at line 2015 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
Definition at line 2035 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
Definition at line 2056 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
Definition at line 2078 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
Definition at line 2101 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
Definition at line 2125 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
Definition at line 2150 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
Definition at line 2176 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
Definition at line 2203 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
Definition at line 2231 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
Definition at line 2260 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
Definition at line 2290 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
Definition at line 2321 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
Definition at line 2353 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
Definition at line 2386 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
Definition at line 2420 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
Definition at line 2455 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
Definition at line 2491 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
Definition at line 2528 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
Definition at line 2566 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
Definition at line 2605 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
Definition at line 2645 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
Definition at line 2686 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
Definition at line 2728 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
Definition at line 2771 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
Definition at line 2815 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
Definition at line 2860 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
Definition at line 2906 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
Definition at line 2953 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log | ( | WarningLevel & | aWarning, |
const T0 & | aArg0, | ||
const T1 & | aArg1, | ||
const T2 & | aArg2, | ||
const T3 & | aArg3, | ||
const T4 & | aArg4, | ||
const T5 & | aArg5, | ||
const T6 & | aArg6, | ||
const T7 & | aArg7, | ||
const T8 & | aArg8, | ||
const T9 & | aArg9, | ||
const T10 & | aArg10, | ||
const T11 & | aArg11, | ||
const T12 & | aArg12, | ||
const T13 & | aArg13, | ||
const T14 & | aArg14, | ||
const T15 & | aArg15, | ||
const T16 & | aArg16, | ||
const T17 & | aArg17, | ||
const T18 & | aArg18, | ||
const T19 & | aArg19, | ||
const T20 & | aArg20, | ||
const T21 & | aArg21, | ||
const T22 & | aArg22, | ||
const T23 & | aArg23, | ||
const T24 & | aArg24, | ||
const T25 & | aArg25, | ||
const T26 & | aArg26, | ||
const T27 & | aArg27, | ||
const T28 & | aArg28, | ||
const T29 & | aArg29, | ||
const T30 & | aArg30, | ||
const T31 & | aArg31 | ||
) |
Function to add a log entry at Warning level.
aWarning | a dummy parameter to choose the specialization of the function for the Warning level |
aArg0 | a templated argument to be added to the log 1st |
aArg1 | a templated argument to be added to the log 2nd |
aArg2 | a templated argument to be added to the log 3rd |
aArg3 | a templated argument to be added to the log 4th |
aArg4 | a templated argument to be added to the log 5th |
aArg5 | a templated argument to be added to the log 6th |
aArg6 | a templated argument to be added to the log 7th |
aArg7 | a templated argument to be added to the log 8th |
aArg8 | a templated argument to be added to the log 9th |
aArg9 | a templated argument to be added to the log 10th |
aArg10 | a templated argument to be added to the log 11th |
aArg11 | a templated argument to be added to the log 12th |
aArg12 | a templated argument to be added to the log 13th |
aArg13 | a templated argument to be added to the log 14th |
aArg14 | a templated argument to be added to the log 15th |
aArg15 | a templated argument to be added to the log 16th |
aArg16 | a templated argument to be added to the log 17th |
aArg17 | a templated argument to be added to the log 18th |
aArg18 | a templated argument to be added to the log 19th |
aArg19 | a templated argument to be added to the log 20th |
aArg20 | a templated argument to be added to the log 21st |
aArg21 | a templated argument to be added to the log 22nd |
aArg22 | a templated argument to be added to the log 23rd |
aArg23 | a templated argument to be added to the log 24th |
aArg24 | a templated argument to be added to the log 25th |
aArg25 | a templated argument to be added to the log 26th |
aArg26 | a templated argument to be added to the log 27th |
aArg27 | a templated argument to be added to the log 28th |
aArg28 | a templated argument to be added to the log 29th |
aArg29 | a templated argument to be added to the log 30th |
aArg30 | a templated argument to be added to the log 31st |
aArg31 | a templated argument to be added to the log 32nd |
Definition at line 3001 of file log.hxx.
References GetLoggingMutex(), uhal::BaseLogLevel< T >::head(), insert(), LoggingIncludes(), uhal::BaseLogLevel< T >::stream(), and uhal::BaseLogLevel< T >::tail().
void uhal::log_inserter | ( | const T & | ) |
const bool & uhal::LoggingIncludes | ( | const DebugLevel & | ) |
const bool & uhal::LoggingIncludes | ( | const ErrorLevel & | ) |
const bool & uhal::LoggingIncludes | ( | const FatalLevel & | ) |
Function to check at runtime whether the level Fatal is to be included in the log output.
Make LoggingIncludes function a friend so it can access our private members.
Definition at line 99 of file log.cpp.
Referenced by uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::AnalyzeReceivedAndCreateReply(), log(), and pycohal::LoggingIncludes().
const bool & uhal::LoggingIncludes | ( | const InfoLevel & | ) |
const bool & uhal::LoggingIncludes | ( | const NoticeLevel & | ) |
const bool & uhal::LoggingIncludes | ( | const WarningLevel & | ) |
timeval uhal::Now | ( | ) |
A helper function to return the current time.
Definition at line 155 of file log_inserters.time.cpp.
Referenced by uhal::FatalLevel::colour_head(), uhal::ErrorLevel::colour_head(), uhal::WarningLevel::colour_head(), uhal::NoticeLevel::colour_head(), uhal::InfoLevel::colour_head(), and uhal::DebugLevel::colour_head().
std::ostream & uhal::operator<< | ( | std::ostream & | aStream, |
const TimeIntervalStats & | aStats | ||
) |
Definition at line 78 of file TimeIntervalStats.cpp.
References uhal::TimeIntervalStats::getLatestMeasurements(), uhal::TimeIntervalStats::max(), uhal::TimeIntervalStats::mean(), uhal::TimeIntervalStats::min(), and uhal::TimeIntervalStats::size().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Quote< T > & | aQuote | ||
) |
Definition at line 41 of file log_inserters.quote.hxx.
References uhal::RefWrapper< T >::value().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5, D5, T6 > > & | aTime | ||
) |
Definition at line 125 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5,' ', null > > & | aTime | ||
) |
Definition at line 150 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4,' ', null,' ', null > > & | aTime | ||
) |
Definition at line 172 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3,' ', null,' ', null,' ', null > > & | aTime | ||
) |
Definition at line 191 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1, D1, T2,' ', null,' ', null,' ', null,' ', null > > & | aTime | ||
) |
Definition at line 207 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0, D0, T1,' ', null,' ', null,' ', null,' ', null,' ', null > > & | aTime | ||
) |
Definition at line 220 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Time< TimeFmt< T0,' ', null,' ', null,' ', null,' ', null,' ', null,' ', null > > & | aTime | ||
) |
Definition at line 230 of file log_inserters.time.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const _Type< T > & | aType | ||
) |
Definition at line 45 of file log_inserters.type.hxx.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const Location & | aLocation | ||
) |
Definition at line 50 of file log_inserters.location.cpp.
References uhal::Location::mFile, uhal::Location::mFunction, uhal::Location::mLine, and Quote().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const ThisThreadID & | aThisThreadID | ||
) |
Definition at line 42 of file log_inserters.threadID.cpp.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< int16_t, FORMAT > & | aInt | ||
) |
Definition at line 278 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< int32_t, FORMAT > & | aInt | ||
) |
Definition at line 292 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< int64_t, FORMAT > & | aInt | ||
) |
Definition at line 306 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< int8_t, FORMAT > & | aInt | ||
) |
Definition at line 264 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< uint16_t, FORMAT > & | aInt | ||
) |
Definition at line 271 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< uint32_t, FORMAT > & | aInt | ||
) |
Definition at line 285 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< uint64_t, FORMAT > & | aInt | ||
) |
Definition at line 299 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::_Integer< uint8_t, FORMAT > & | aInt | ||
) |
Definition at line 257 of file log_inserters.integer.hxx.
References uhal::_Integer< T, FORMAT >::print().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::HttpResponseType & | aHttpResponse | ||
) |
Definition at line 41 of file HttpResponseGrammar.cpp.
References uhal::HttpResponseType::content, uhal::HttpResponseType::headers, uhal::HttpResponseType::method, uhal::HttpResponseType::status, uhal::HttpResponseType::status_string, and uhal::HttpResponseType::version.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::IPbusTransactionType & | aIPbusTransactionType | ||
) |
Streaming operator for formatting objects of the uhal::IPbusTransactionType.
aStr | a stream to which to append the formatted data |
aIPbusTransactionType | an enum object to be formatted |
Definition at line 55 of file ProtocolIPbusCore.cpp.
References B_O_T, CONFIG_SPACE_READ, NI_READ, NI_WRITE, R_A_I, READ, RMW_BITS, RMW_SUM, and WRITE.
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::Node & | aNode | ||
) |
Definition at line 845 of file Node.cpp.
References uhal::Node::stream().
std::ostream & uhal::operator<< | ( | std::ostream & | aStr, |
const uhal::URI & | aURI | ||
) |
Definition at line 42 of file URI.cpp.
References uhal::URI::mArguments, uhal::URI::mExtension, uhal::URI::mHostname, uhal::URI::mPath, uhal::URI::mPort, and uhal::URI::mProtocol.
std::ostream & uhal::operator<< | ( | std::ostream & | aStream, |
const std::pair< const Node *, const Node * > & | aNodes | ||
) |
Definition at line 48 of file test_nodes.cpp.
std::ostream & uhal::operator<< | ( | std::ostream & | aStream, |
const TranslatedFmt< T > & | aFmt | ||
) |
Definition at line 284 of file ProtocolIPbusCore.hpp.
References uhal::TranslatedFmt< T >::mData, and uhal::TranslatedFmt< T >::mFunc.
void uhal::print | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | aUsec | ||
) |
void uhal::print< day > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 90 of file log_inserters.time.cpp.
void uhal::print< hr > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 102 of file log_inserters.time.cpp.
void uhal::print< min > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 113 of file log_inserters.time.cpp.
void uhal::print< mth > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 81 of file log_inserters.time.cpp.
void uhal::print< sec > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 127 of file log_inserters.time.cpp.
void uhal::print< strmth > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 72 of file log_inserters.time.cpp.
void uhal::print< usec > | ( | std::ostream & | aStr, |
const tm * | , | ||
const uint32_t & | aUsec | ||
) |
Definition at line 141 of file log_inserters.time.cpp.
void uhal::print< year > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 47 of file log_inserters.time.cpp.
void uhal::print< yr > | ( | std::ostream & | aStr, |
const tm * | aTm, | ||
const uint32_t & | |||
) |
Definition at line 55 of file log_inserters.time.cpp.
_Quote< const char * > uhal::Quote | ( | const char * | aStr | ) |
Definition at line 39 of file log_inserters.quote.cpp.
_Quote< T > uhal::Quote | ( | const T & | aT | ) |
Definition at line 49 of file log_inserters.quote.hxx.
Referenced by uhal::NodeTreeBuilder::addChildren(), uhal::SigBusGuard::blockSIGBUS(), uhal::ConnectionManager::CallBack(), uhal::NodeTreeBuilder::CallBack(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::CheckDeadline(), uhal::UDP< InnerProtocol >::CheckDeadline(), uhal::NodeTreeBuilder::checkForAddressCollisions(), uhal::Mmap::File::close(), uhal::PCIe::File::close(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::connect(), uhal::UDP< InnerProtocol >::connect(), uhal::Mmap::connect(), uhal::PCIe::connect(), uhal::DerivedNodeFactory::convertToClassType(), uhal::DerivedNodeFactory::Creator< T >::create(), uhal::Mmap::dispatchExceptionHandler(), uhal::PCIe::dispatchExceptionHandler(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::dispatchExceptionHandler(), ExtractTargetID(), uhal::tests::PCIeDummyHardware::fifoRead(), uhal::Mmap::Flush(), uhal::PCIe::Flush(), uhal::Rule< R >::forbid(), uhal::ClientFactory::getClient(), uhal::ConnectionManager::getDevice(), uhal::Node::getNode(), uhal::NodeTreeBuilder::getNodeTree(), uhal::utilities::GetXMLattribute(), uhal::utilities::HttpGet(), uhal::Mmap::implementDispatch(), uhal::PCIe::implementDispatch(), uhal::Mmap::File::lock(), uhal::PCIe::File::lock(), main(), uhal::Mmap::Mmap(), uhal::Mmap::File::open(), uhal::PCIe::File::open(), uhal::utilities::OpenFile(), uhal::utilities::OpenFileHttp(), uhal::utilities::OpenFileLocal(), uhal::Parser< R >::operator()(), operator<<(), uhal::utilities::ParseSemicolonDelimitedUriList(), uhal::PCIe::PCIe(), uhal::tests::PCIeDummyHardware::PCIeDummyHardware(), uhal::utilities::PugiXMLParseResultPrettifier(), uhal::Mmap::read(), uhal::PCIe::read(), uhal::Node::read(), uhal::PCIe::File::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read_callback(), uhal::UDP< InnerProtocol >::read_callback(), uhal::Node::readBlock(), uhal::Node::readBlockOffset(), uhal::Rule< R >::require(), uhal::tests::PCIeDummyHardware::run(), uhal::tests::PerfTester::runValidationTest(), setLogLevelFromEnvironment(), uhal::NodeTreeBuilder::setModeAndSize(), uhal::utilities::ShellExpandFilenameExpr(), uhal::tests::PCIeDummyHardware::stop(), uhal::Mmap::File::unlock(), uhal::PCIe::File::unlock(), uhal::ControlHub< InnerProtocol >::validate(), uhal::IPbus< 2, IPbus_minor >::validate(), uhal::IPbusCore::validate(), uhal::Mmap::write(), uhal::PCIe::write(), uhal::Node::write(), uhal::PCIe::File::write(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write_callback(), uhal::UDP< InnerProtocol >::write_callback(), uhal::Node::writeBlock(), uhal::Node::writeBlockOffset(), uhal::tests::PCIeDummyHardware::~PCIeDummyHardware(), uhal::SigBusGuard::~SigBusGuard(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::~TCP(), and uhal::UDP< InnerProtocol >::~UDP().
void uhal::setLogLevelFromEnvironment | ( | const char * | aEnvVar | ) |
Function to specify that the logging level should be retrieved from an environment variable.
aEnvVar | the name of the environment variable which is used to specify the logging level |
Definition at line 16 of file log.cpp.
References Debug, Error, Fatal, Info, log(), Notice, Quote(), setLogLevelTo(), and Warning.
Referenced by main(), and pycohal::wrap_logging_functions().
void uhal::setLogLevelTo | ( | const DebugLevel & | ) |
void uhal::setLogLevelTo | ( | const ErrorLevel & | ) |
void uhal::setLogLevelTo | ( | const FatalLevel & | ) |
Function to specify, at runtime, that only messages with a severity level above Fatal should be logged.
Make setLogLevelTo function a friend so it can access our private members.
Definition at line 87 of file log.cpp.
Referenced by uhal::tests::PerfTester::buildClients(), main(), uhal::tests::DummyHardwareOptions::parseFromCommandLine(), setLogLevelFromEnvironment(), and pycohal::setLogLevelTo().
void uhal::setLogLevelTo | ( | const InfoLevel & | ) |
void uhal::setLogLevelTo | ( | const NoticeLevel & | ) |
void uhal::setLogLevelTo | ( | const WarningLevel & | ) |
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int16_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int16_ts.
Definition at line 49 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int16_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int16_ts.
Definition at line 49 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int32_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int32_ts.
Definition at line 58 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int32_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int32_ts.
Definition at line 58 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int64_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int64_ts.
Definition at line 67 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int64_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int64_ts.
Definition at line 67 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int8_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int8_ts.
Definition at line 40 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const int8_t & | aInt | ||
) |
Helper function for adding the '+'/'-' sign to int8_ts.
Definition at line 40 of file log_inserters.integer.cpp.
void uhal::sign_helper | ( | std::ostream & | aStr, |
const T & | aInt | ||
) |
Helper function for adding the '+'/'-' sign.
Definition at line 55 of file log_inserters.integer.hxx.
Referenced by uhal::_Integer< T, IntFmt< dec, fixed, WIDTH > >::print(), and uhal::_Integer< T, IntFmt< dec, variable, WIDTH > >::print().
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5, D5, T6 > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 53 of file log_inserters.time.hxx.
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4, D4, T5,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 65 of file log_inserters.time.hxx.
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3, D3, T4,' ', null,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 76 of file log_inserters.time.hxx.
_Time< TimeFmt< T0, D0, T1, D1, T2, D2, T3,' ', null,' ', null,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 86 of file log_inserters.time.hxx.
_Time< TimeFmt< T0, D0, T1, D1, T2,' ', null,' ', null,' ', null,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 95 of file log_inserters.time.hxx.
_Time< TimeFmt< T0, D0, T1,' ', null,' ', null,' ', null,' ', null,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 103 of file log_inserters.time.hxx.
_Time< TimeFmt< T0,' ', null,' ', null,' ', null,' ', null,' ', null,' ', null > > uhal::Time | ( | const timeval & | aTime | ) |
aTime | a time object to be formatted and logged |
Definition at line 110 of file log_inserters.time.hxx.
_Time< DefaultTimeFmt > uhal::Time | ( | const timeval & | aTime | ) |
Helper function which wrap the template uglyness in a pretty package.
aTime | a time object to be formatted and logged |
Definition at line 149 of file log_inserters.time.cpp.
Referenced by uhal::FatalLevel::colour_head(), uhal::ErrorLevel::colour_head(), uhal::WarningLevel::colour_head(), uhal::NoticeLevel::colour_head(), uhal::InfoLevel::colour_head(), uhal::DebugLevel::colour_head(), and main().
_Time< FORMAT > uhal::Time | ( | const timeval & | aTime, |
const FORMAT & | aFmt | ||
) |
Helper function which wrap the template uglyness in a pretty package.
aTime | a time object to be formatted and logged |
aFmt | a time format object whose template parameters fully encapsulate the desired formatting |
Definition at line 241 of file log_inserters.time.hxx.
std::string uhal::toString | ( | const URI & | aURI | ) |
Definition at line 61 of file URI.cpp.
References uhal::URI::mArguments, uhal::URI::mExtension, uhal::URI::mHostname, uhal::URI::mPath, uhal::URI::mPort, and uhal::URI::mProtocol.
_Type< T > uhal::Type | ( | ) |
Definition at line 60 of file log_inserters.type.hxx.
Referenced by uhal::Node::getNode(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::implementDispatch(), uhal::UDP< InnerProtocol >::implementDispatch(), main(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::~TCP(), and uhal::UDP< InnerProtocol >::~UDP().
_Type< T > uhal::Type | ( | const T & | aT | ) |
Definition at line 66 of file log_inserters.type.hxx.
|
private |
Definition at line 24 of file __init__.py.
|
private |
Definition at line 22 of file __init__.py.
DebugLevel uhal::Debug |
Definition at line 133 of file LogLevels.cpp.
Referenced by uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::analyze(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::AnalyzeReceivedAndCreateReply(), uhal::NodeTreeBuilder::bitmaskNodeCreator(), uhal::tests::PerfTester::buildClients(), uhal::ClientInterface::checkBufferSpace(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::CheckDeadline(), uhal::UDP< InnerProtocol >::CheckDeadline(), uhal::Mmap::connect(), uhal::PCIe::connect(), uhal::DerivedNodeFactory::Creator< T >::create(), uhal::Mmap::Flush(), uhal::PCIe::Flush(), uhal::IPbusCore::implementBOT(), uhal::Mmap::implementDispatch(), uhal::PCIe::implementDispatch(), uhal::IPbusCore::implementRead(), uhal::IPbusCore::implementReadBlock(), uhal::IPbusCore::implementReadConfigurationSpace(), uhal::IPbusCore::implementRMWbits(), uhal::IPbusCore::implementRMWsum(), uhal::IPbusCore::implementWrite(), uhal::IPbusCore::implementWriteBlock(), pycohal::LoggingIncludes(), uhal::NodeTreeBuilder::moduleNodeCreator(), uhal::tests::DummyHardwareOptions::parseFromCommandLine(), uhal::utilities::ParseSemicolonDelimitedUriList(), uhal::tests::PCIeDummyHardware::PCIeDummyHardware(), uhal::NodeTreeBuilder::plainNodeCreator(), uhal::IPbus< 1, IPbus_minor >::predispatch(), uhal::Mmap::read(), uhal::PCIe::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read(), uhal::UDP< InnerProtocol >::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read_callback(), uhal::tests::PCIeDummyHardware::run(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), uhal::utilities::ShellExpandFilenameExpr(), uhal::IPbusCore::validate(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::write(), uhal::UDP< InnerProtocol >::write(), uhal::Mmap::write(), uhal::PCIe::write(), and uhal::SigBusGuard::~SigBusGuard().
ErrorLevel uhal::Error |
Definition at line 61 of file LogLevels.cpp.
Referenced by uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::analyze(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::analyze(), uhal::ConnectionManager::CallBack(), uhal::NodeTreeBuilder::CallBack(), uhal::tests::PerfTester::QueuedBlockRead::check_values(), uhal::tests::PerfTester::QueuedBlockWrite::check_values(), uhal::tests::PerfTester::QueuedRmwBits::check_values(), uhal::tests::PerfTester::QueuedRmwSum::check_values(), uhal::NodeTreeBuilder::checkForAddressCollisions(), uhal::Mmap::File::close(), uhal::PCIe::File::close(), uhal::IPbus< 1, IPbus_minor >::ExtractHeader(), uhal::IPbus< 2, IPbus_minor >::ExtractHeader(), uhal::utilities::GetXMLattribute(), uhal::tests::TCPDummyHardware< IPbus_major, IPbus_minor >::handle_read_chunk_header(), uhal::tests::TCPDummyHardware< IPbus_major, IPbus_minor >::handle_read_chunk_payload(), uhal::utilities::HttpGet(), uhal::exception::IPbusCoreResponseCodeSet::IPbusCoreResponseCodeSet(), log(), pycohal::LoggingIncludes(), main(), uhal::tests::DummyHardwareOptions::parseFromCommandLine(), uhal::utilities::PugiXMLParseResultPrettifier(), uhal::UDP< InnerProtocol >::read(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::read_callback(), uhal::UDP< InnerProtocol >::read_callback(), uhal::tests::PerfTester::runValidationTest(), uhal::tests::DummyHardware< 2, 0 >::SetEndpoint(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_packet_header(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::unknown_type(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::unknown_type(), uhal::detail::RobustSessionMutex::unlock(), uhal::UDP< InnerProtocol >::write(), uhal::SigBusGuard::~SigBusGuard(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::~TCP(), and uhal::UDP< InnerProtocol >::~UDP().
FatalLevel uhal::Fatal |
Definition at line 43 of file LogLevels.cpp.
Referenced by uhal::tests::PCIeDummyHardware::fifoRead(), pycohal::LoggingIncludes(), uhal::tests::PCIeDummyHardware::run(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), and uhal::tests::PCIeDummyHardware::~PCIeDummyHardware().
InfoLevel uhal::Info |
Definition at line 115 of file LogLevels.cpp.
Referenced by uhal::ConnectionManager::CallBack(), uhal::NodeTreeBuilder::CallBack(), uhal::ConnectionManager::clearAddressFileCache(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::connect(), uhal::UDP< InnerProtocol >::connect(), uhal::Mmap::connect(), uhal::PCIe::connect(), uhal::ClientInterface::dispatch(), uhal::Mmap::dispatchExceptionHandler(), uhal::PCIe::dispatchExceptionHandler(), ExtractTargetID(), uhal::ClientFactory::getClient(), uhal::ConnectionManager::getDevice(), uhal::Node::getNodes(), uhal::utilities::HttpGet(), uhal::tests::job_multiple(), pycohal::LoggingIncludes(), uhal::tests::DummyHardware< 2, 0 >::ni_read(), uhal::PCIe::PCIe(), uhal::Mmap::read(), uhal::PCIe::read(), uhal::tests::PCIeDummyHardware::run(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), uhal::tests::PCIeDummyHardware::stop(), uhal::Mmap::write(), and uhal::PCIe::write().
string uhal.message = 'Failed to load uHAL bindings.' |
Definition at line 7 of file __init__.py.
Referenced by uhal::SigBusGuard.handle().
NoticeLevel uhal::Notice |
Definition at line 97 of file LogLevels.cpp.
Referenced by uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::bot(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::bot(), uhal::tests::PerfTester::QueuedBlockRead::check_values(), uhal::tests::PerfTester::QueuedBlockWrite::check_values(), uhal::tests::PerfTester::QueuedRmwBits::check_values(), uhal::tests::PerfTester::QueuedRmwSum::check_values(), uhal::tests::DummyHardware< IPbus_major, IPbus_minor >::control_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::control_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::control_packet_header(), pycohal::LoggingIncludes(), main(), uhal::Mmap::Mmap(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::ni_write(), uhal::tests::DummyHardwareOptions::parseFromCommandLine(), uhal::PCIe::PCIe(), uhal::tests::PCIeDummyHardware::PCIeDummyHardware(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::read(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::readConfigurationSpace(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::resend_packet_header(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_bits(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::rmw_sum(), uhal::tests::PerfTester::runValidationTest(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), uhal::NodeTreeBuilder::setModeAndSize(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::status_packet_header(), uhal::tests::PerfTester::validation_test_block_write_read(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::write(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::write(), and uhal::tests::PCIeDummyHardware::~PCIeDummyHardware().
uhal.unary |
Definition at line 53 of file __init__.py.
WarningLevel uhal::Warning |
Definition at line 79 of file LogLevels.cpp.
Referenced by uhal::DerivedNodeFactory::add(), uhal::ClientFactory::add(), uhal::HostToTargetInspector< IPbus_major, IPbus_minor >::analyze(), uhal::TargetToHostInspector< IPbus_major, IPbus_minor >::analyze(), uhal::tests::PerfTester::buildClients(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::CheckDeadline(), uhal::UDP< InnerProtocol >::CheckDeadline(), uhal::NodeTreeBuilder::checkForAddressCollisions(), uhal::DerivedNodeFactory::convertToClassType(), uhal::TCP< InnerProtocol, nr_buffers_per_send >::dispatchExceptionHandler(), uhal::UDP< InnerProtocol >::dispatchExceptionHandler(), uhal::tests::PerfTester::getRandomBlockSize(), uhal::tests::job_multiple(), pycohal::LoggingIncludes(), uhal::Mmap::Mmap(), uhal::Parser< R >::operator()(), uhal::PCIe::PCIe(), uhal::Mmap::read(), uhal::PCIe::read(), setLogLevelFromEnvironment(), pycohal::setLogLevelTo(), uhal::NodeTreeBuilder::setModeAndSize(), uhal::tests::UHAL_TESTS_DEFINE_CLIENT_TEST_CASES(), uhal::Mmap::File::unlock(), and uhal::PCIe::File::unlock().