From 23877f5ea734bd24f482f3a3534ead851f73094d Mon Sep 17 00:00:00 2001 From: Thorsten von Eicken Date: Sun, 19 Jun 2016 08:49:52 -0700 Subject: [PATCH] Re-enable syslog by default and fix compilation issue --- Makefile | 2 +- html/services.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fb58cb1..4138886 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ LED_SERIAL_PIN ?= 14 # --------------- esp-link modules config options --------------- # Optional Modules mqtt -MODULES ?= mqtt rest #syslog +MODULES ?= mqtt rest syslog # --------------- esphttpd config options --------------- diff --git a/html/services.js b/html/services.js index 3f16975..56d799f 100644 --- a/html/services.js +++ b/html/services.js @@ -54,7 +54,7 @@ function displayServices(data) { if (data.syslog_host !== undefined) { $("#Syslog-form").removeAttribute("hidden"); } else { - # syslog disabled... + // syslog disabled... $("#Syslog-form").parentNode.setAttribute("hidden", ""); } $("#SNTP-form").removeAttribute("hidden");