blob: deee64ffe819758ef11c686555a6be6c77e74e12 [file] [log] [blame]
/*
* SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#ifndef __TFM_LOG_H__
#define __TFM_LOG_H__
#include <stdio.h>
/* Functions and macros in this file is for 'thread mode' usage. */
#ifdef TFM_NS_LOG
#define LOG_MSG(...) printf(__VA_ARGS__)
#else
#define LOG_MSG(...)
#endif
#endif /* __TFM_LOG_H__ */