Skip to content

Commit

Permalink
fix(Store): Disable remote logging by default
Browse files Browse the repository at this point in the history
  • Loading branch information
becem-gharbi committed Nov 21, 2023
1 parent 2b6e70d commit 83b178b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESPAdmin",
"version": "1.1.2",
"version": "1.2.0",
"description": "The sdk for ESP Admin platform",
"keywords": "config, ota, esp32, management",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/Store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace ESPAdmin
const char *Store::_namespace = "esp_admin";

bool Store::mqttConnected = false;
bool Store::logRemoteEnabled = true;
bool Store::logRemoteEnabled = false;
bool Store::logSerialEnabled = true;
bool Store::updateRunning = false;

Expand Down

0 comments on commit 83b178b

Please sign in to comment.