1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

auto_init: replace remaining DEBUG with LOG_DEBUG

Follow-up on dfeb4116c8
This commit is contained in:
Martine S. Lenders 2020-03-03 16:25:07 +01:00
parent 4160439eab
commit b04e01a19f
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -24,9 +24,6 @@
#include "auto_init.h"
#include "log.h"
#define ENABLE_DEBUG (0)
#include "debug.h"
void auto_init(void)
{
#ifdef MODULE_AUTO_INIT_RANDOM
@ -596,7 +593,7 @@ void auto_init(void)
#endif /* MODULE_AUTO_INIT_DHCPV6_CLIENT */
#ifdef MODULE_GNRC_DHCPV6_CLIENT_6LBR
DEBUG("auto_init 6LoWPAN border router DHCPv6 client");
LOG_DEBUG("Auto init 6LoWPAN border router DHCPv6 client\n");
extern void gnrc_dhcpv6_client_6lbr_init(void);
gnrc_dhcpv6_client_6lbr_init();
#endif /* MODULE_GNRC_DHCPV6_CLIENT_6LBR */