logs: Make verbose and debug logging cleaner

* Closes #3193
* Closes IDFGH-782

The logs that are deleted in this commit make debug and verbose mode
unusable.
This commit is contained in:
Anuj Deshpande
2019-03-20 17:36:47 +05:30
parent c5fb88c2e2
commit 13cf867023
2 changed files with 0 additions and 3 deletions

View File

@@ -1506,7 +1506,6 @@ esp_err_t adc1_adc_mode_acquire()
//lazy initialization
//for adc1, block until acquire the lock
_lock_acquire( &adc1_i2s_lock );
ESP_LOGD( RTC_MODULE_TAG, "adc mode takes adc1 lock." );
portENTER_CRITICAL(&rtc_spinlock);
// for now the WiFi would use ADC2 and set xpd_sar force on.
// so we can not reset xpd_sar to fsm mode directly.
@@ -1526,7 +1525,6 @@ esp_err_t adc1_lock_release()
// We should handle this after the synchronization mechanism is established.
_lock_release( &adc1_i2s_lock );
ESP_LOGD( RTC_MODULE_TAG, "returns adc1 lock." );
return ESP_OK;
}

View File

@@ -97,7 +97,6 @@ static inline void phy_update_wifi_mac_time(bool en_clock_stopped, int64_t now)
s_wifi_mac_time_update_cb(diff);
}
s_common_clock_disable_time = 0;
ESP_LOGD(TAG, "wifi mac time delta: %u", diff);
}
}
}