remove unneeded logging

This commit is contained in:
Marius Gripp 2019-09-02 16:56:50 +02:00
parent a806c5e463
commit 2530bd4235

View File

@ -18,7 +18,6 @@ uint64_t fota_trigger_mac;
void macsniff_setup() { void macsniff_setup() {
std::stringstream ss; std::stringstream ss;
ss << std::hex << OTA_TRIGGER_MAC; ss << std::hex << OTA_TRIGGER_MAC;
ESP_LOGI(TAG, "OTA_TRIGGER_MAC %X", OTA_TRIGGER_MAC);
ss >> fota_trigger_mac; ss >> fota_trigger_mac;
std::cout << static_cast<int>(fota_trigger_mac) << std::endl; std::cout << static_cast<int>(fota_trigger_mac) << std::endl;
} }