ocf/src/ocf_logger_priv.h
Robert Baldyga a8e1ce8cc5 Initial commit
Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
2018-11-29 15:14:21 +01:00

19 lines
471 B
C

/*
* Copyright(c) 2012-2018 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause-Clear
*/
#ifndef __OCF_LOGGER_PRIV_H__
#define __OCF_LOGGER_PRIV_H__
__attribute__((format(printf, 3, 4)))
int ocf_log_raw(const struct ocf_logger *logger, ocf_logger_lvl_t lvl,
const char *fmt, ...);
int ocf_log_raw_rl(const struct ocf_logger *logger, const char *func_name);
int ocf_log_stack_trace_raw(const struct ocf_logger *logger);
#endif /* __OCF_LOGGER_PRIV_H__ */