open62541 1.4.15
Open source implementation of OPC UA
Loading...
Searching...
No Matches
Logger.h
Go to the documentation of this file.
1/** This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 *
5 * Copyright 2020 (c) Matthias Konnerth
6 */
7
8#ifndef NODESETLOADER_LOGGER_H
9#define NODESETLOADER_LOGGER_H
10
13
20
21typedef void (*NodesetLoader_Logger_log)(void *context,
22 enum NodesetLoader_LogLevel level,
23 const char *message, ...);
29
30#endif
void(* NodesetLoader_Logger_log)(void *context, enum NodesetLoader_LogLevel level, const char *message,...)
Definition Logger.h:21
NodesetLoader_LogLevel
Definition Logger.h:15
@ NODESETLOADER_LOGLEVEL_WARNING
Definition Logger.h:17
@ NODESETLOADER_LOGLEVEL_ERROR
Definition Logger.h:18
@ NODESETLOADER_LOGLEVEL_DEBUG
Definition Logger.h:16
NodesetLoader_Logger_log log
Definition Logger.h:27