Files
STM32F4-Base/Drivers/BSP/NET/lftpd/private/lftpd_log.h
2026-07-21 20:18:28 +08:00

8 lines
232 B
C

#pragma once
#include "dbg_log.h"
#define lftpd_log_error(format, ...) DBG_ERROR("[FTP] " format, ##__VA_ARGS__)
#define lftpd_log_info(format, ...) DBG_INFO("[FTP] " format, ##__VA_ARGS__)
#define lftpd_log_debug(format, ...)