20 lines
512 B
C
20 lines
512 B
C
/*
|
|
**********************************************************************************************
|
|
* File: logger.h
|
|
* Description: log module
|
|
* Authors: Liu WenTan <liuwentan@geedgenetworks.com>
|
|
* Date: 2022-07-15
|
|
* Copyright: (c) 2018-2022 Geedge Networks, Inc. All rights reserved.
|
|
***********************************************************************************************
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define log_debug(x, ...)
|
|
|
|
#define log_info(x, ...)
|
|
|
|
#define log_notice(x, ...)
|
|
|
|
#define log_error(x, ...)
|