From 525d3109f39ad968ecf486f0e2109f73cbd2bccf Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Sun, 10 Mar 2019 02:22:06 +0900 Subject: [PATCH] Fixed issue #49 --- src/AutoConnectElementBasisImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoConnectElementBasisImpl.h b/src/AutoConnectElementBasisImpl.h index 29f2c12..1a69d78 100644 --- a/src/AutoConnectElementBasisImpl.h +++ b/src/AutoConnectElementBasisImpl.h @@ -83,7 +83,7 @@ bool AutoConnectInputBasis::isValid(void) const { #if defined(ARDUINO_ARCH_ESP8266) regex_t preg; if (regcomp(&preg, pattern.c_str(), REG_EXTENDED) != 0) { - AC_DEBUG("%s regex compile failed\n", pattern.c_str()); + AC_DBG("%s regex compile failed\n", pattern.c_str()); rc = false; } else {