mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 20:17:06 +03:00
22 lines
354 B
C
22 lines
354 B
C
//
|
|
// Copyright(c) 2016-2017 benikabocha.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#ifndef SABA_BASE_LOG_H_
|
|
#define SABA_BASE_LOG_H_
|
|
|
|
#include <util/log.h>
|
|
|
|
#define SABA_INFO LOG_INFO
|
|
|
|
#define SABA_WARN LOG_WARN
|
|
|
|
#define SABA_ERROR LOG_ERROR
|
|
|
|
#define SABA_ASSERT(expr)\
|
|
assert(expr)
|
|
|
|
#endif // !SABA_BASE_LOG_H_
|
|
|