All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches

littlefs logging macro overrides More...

Detailed Description

littlefs logging macro overrides

This header provides re-implementations of the logging and debugging macros used in littlefs. This is to allow the package to make use of RIOT's own modules for logging and debugging.

Author
Joshua DeWeese josh..nosp@m.dewe.nosp@m.ese@g.nosp@m.mail.nosp@m..com

Definition in file lfs_log.h.

#include "log.h"
+ Include dependency graph for lfs_log.h:

Go to the source code of this file.

#define _LFS_LOG(level, fmt, ...)
 Private macro for routing littlefs log msgs to RIOT's log module.
 

littlefs overrides

Re-implementation of littlefs's logging and debugging macros.

#define LFS_DEBUG(...)
 override of littlefs's LFS_DEBUG()
 
#define LFS_WARN(...)
 override of littlefs's LFS_WARN()
 
#define LFS_ERROR(...)
 override of littlefs's LFS_ERROR()
 

Macro Definition Documentation

◆ _LFS_LOG

#define _LFS_LOG ( level,
fmt,
... )
Value:
LOG(level, "lfs: " fmt "%s\n", __VA_ARGS__)
#define LOG(level,...)
Log message if level <= LOG_LEVEL.
Definition log.h:84

Private macro for routing littlefs log msgs to RIOT's log module.

Parameters
[in]levellog level of this log message
[in]fmtprintf style format string
[in,out]...printf style variadic args

Definition at line 40 of file lfs_log.h.

◆ LFS_DEBUG

#define LFS_DEBUG ( ...)
Value:
_LFS_LOG(LOG_DEBUG, __VA_ARGS__, "")
#define LOG_DEBUG(...)
Print a log message, if LOG_LEVEL is defined to be at least LOG_DEBUG
Definition log.h:109
#define _LFS_LOG(level, fmt,...)
Private macro for routing littlefs log msgs to RIOT's log module.
Definition lfs_log.h:40

override of littlefs's LFS_DEBUG()

Definition at line 52 of file lfs_log.h.

◆ LFS_ERROR

#define LFS_ERROR ( ...)
Value:
_LFS_LOG(LOG_ERROR, __VA_ARGS__, "")
#define LOG_ERROR(...)
log an error
Definition log.h:92

override of littlefs's LFS_ERROR()

Definition at line 66 of file lfs_log.h.

◆ LFS_WARN

#define LFS_WARN ( ...)
Value:
_LFS_LOG(LOG_WARNING, __VA_ARGS__, "")
#define LOG_WARNING(...)
log a warning
Definition log.h:93

override of littlefs's LFS_WARN()

Definition at line 59 of file lfs_log.h.