blob: 1c7d581f1fd8779ac3c4f6133f59ac76015d86e3 [file] [log] [blame]
Harrison Mutai88d6ec82025-08-12 14:32:58 +00001/*
2 * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LOG_BACKEND_PRINTF_H
8#define LOG_BACKEND_PRINTF_H
9
10#include <stdio.h>
11
12#define evlog_log printf
13
14#define EVLOG_MARKER_ERROR "[ERROR] "
15#define EVLOG_MARKER_NOTICE "[NOTICE] "
16#define EVLOG_MARKER_WARNING "[WARNING] "
17#define EVLOG_MARKER_INFO "[INFO] "
18#define EVLOG_MARKER_VERBOSE "[VERBOSE] "
19
20#endif /* LOG_BACKEND_PRINTF_H */