Skip to content

Commit 0793ce7

Browse files
committed
Merge branch 'debug'
2 parents 4107424 + a3161d5 commit 0793ce7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@ bool ESP8266WiFiAPClass::softAPConfig(IPAddress local_ip, IPAddress gateway, IPA
234234
// check config
235235
if(wifi_get_ip_info(SOFTAP_IF, &info)) {
236236
if(info.ip.addr == 0x00000000) {
237-
DEBUG_WIFI("[AP] IP config Invalid?!\n");
237+
DEBUG_WIFI("[APConfig] IP config Invalid?!\n");
238238
ret = false;
239239
} else if(local_ip != info.ip.addr) {
240240
ip = info.ip.addr;
241-
DEBUG_WIFI("[AP] IP config not set correct?! new IP: %s\n", ip.toString().c_str());
241+
DEBUG_WIFI("[APConfig] IP config not set correct?! new IP: %s\n", ip.toString().c_str());
242242
ret = false;
243243
}
244244
} else {
245-
DEBUG_WIFI("[AP] wifi_get_ip_info failed!\n");
245+
DEBUG_WIFI("[APConfig] wifi_get_ip_info failed!\n");
246246
ret = false;
247247
}
248248

0 commit comments

Comments
 (0)