GM6000 Digital Heater Controller Branch: main
SDX-1330
Private_.h
Go to the documentation of this file.
1#ifndef Cpl_Logging_Private_h_
2#define Cpl_Logging_Private_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file contains private (i.e. the application SHOULD never call this
16 method directory for the logging framework
17*/
18
19#include <stdint.h>
20#include <stdarg.h>
21
22///
23namespace Cpl {
24///
25namespace Logging {
26
27
28/** This method is used to create the log entry and insert into the entry queue
29 */
30void createAndAddLogEntry_( uint32_t category,
31 const char* catIdText,
32 uint16_t msgId,
33 const char* msgIdText,
34 const char* format,
35 va_list ap ) noexcept;
36
37
38
39}; // end namespaces
40};
41#endif // end header latch
void createAndAddLogEntry_(uint32_t category, const char *catIdText, uint16_t msgId, const char *msgIdText, const char *format, va_list ap) noexcept
This method is used to create the log entry and insert into the entry queue.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20