GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Logging_Api_h_
2#define Ajax_Logging_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
22
23
24///
25namespace Ajax {
26///
27namespace Logging {
28
29
30/*---------------------------------------------------------------------------*/
31/// This method logs a CRITICAL log entry
32void logf( CriticalMsg msgId, const char* msgTextFormat, ... ) noexcept;
33
34/// This method logs a WARNING log entry
35void logf( WarningMsg msgId, const char* msgTextFormat, ... ) noexcept;
36
37/// This method logs a EVENT log entry
38void logf( EventMsg msgId, const char* msgTextFormat, ... ) noexcept;
39
40/// This method logs a ALERT log entry
41void logf( AlertMsg msgId, const char* msgTextFormat, ... ) noexcept;
42
43/// This method logs a INFO log entry
44void logf( InfoMsg msgId, const char* msgTextFormat, ... ) noexcept;
45
46/// This method logs a METRICS log entry
47void logf( MetricsMsg msgId, const char* msgTextFormat, ... ) noexcept;
48
49}; // end namespaces
50};
51#endif // end header latch
void logf(CriticalMsg msgId, const char *msgTextFormat,...) noexcept
This method logs a CRITICAL log entry.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.