Dont include log header by default everywhere

This commit is contained in:
2021-02-22 02:06:48 +01:00
parent acf3b3948a
commit e385dd8abc
10 changed files with 12 additions and 1 deletions

View File

@ -14,6 +14,8 @@
#include "vfs_api.h"
#include "esp32-hal-log.h"
using namespace fs;
FileImplPtr VFSImpl::open(const char* path, const char* mode)

View File

@ -23,6 +23,8 @@ extern "C" {
#include "SPIFFS.h"
#include "esp32-hal-log.h"
using namespace fs;
class SPIFFSImpl : public VFSImpl

View File

@ -29,6 +29,7 @@ extern "C" {
}
#include "esp32-hal-i2c.h"
#include "esp32-hal-log.h"
#include "Wire.h"
#include "Arduino.h"