25 lines
510 B
C
25 lines
510 B
C
/******************************************************************************
|
|
*
|
|
* Copyright (c) 2017-2019 by Löwenware Ltd
|
|
* Please, refer LICENSE file for legal information
|
|
*
|
|
******************************************************************************/
|
|
|
|
/**
|
|
* @file log.c
|
|
* @author Ilja Kartašov <ik@lowenware.com>
|
|
* @brief
|
|
*
|
|
* @see https://lowenware.com/
|
|
*/
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#if AX_LOG_ENABLED == 1
|
|
|
|
struct cstuff_log axLog;
|
|
|
|
#endif /* AX_LOG_ENABLED == 1 */
|