From c73bb9953adb41c7ab059258cdfcf589bce86215 Mon Sep 17 00:00:00 2001 From: Adrian Scillato <35405447+ascillato@users.noreply.github.com> Date: Mon, 19 Jul 2021 14:24:53 -0300 Subject: [PATCH] LOG: Increase readability of project name and device name --- tasmota/tasmota.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota.ino b/tasmota/tasmota.ino index 721770637..ecf78f0a0 100644 --- a/tasmota/tasmota.ino +++ b/tasmota/tasmota.ino @@ -1,5 +1,5 @@ /* - tasmota.ino - Tasmota firmware for iTead Sonoff, Wemos and NodeMCU hardware + tasmota.ino - Tasmota firmware for iTead Sonoff, Wemos, NodeMCU, ESP8266 and ESP32 hardwares Copyright (C) 2021 Theo Arends @@ -398,7 +398,7 @@ void setup(void) { SetPowerOnState(); WifiConnect(); - AddLog(LOG_LEVEL_INFO, PSTR(D_PROJECT " %s %s " D_VERSION " %s%s-" ARDUINO_CORE_RELEASE "(%s)"), + AddLog(LOG_LEVEL_INFO, PSTR(D_PROJECT " %s - %s " D_VERSION " %s%s-" ARDUINO_CORE_RELEASE "(%s)"), PSTR(PROJECT), SettingsText(SET_DEVICENAME), TasmotaGlobal.version, TasmotaGlobal.image_name, GetBuildDateAndTime().c_str()); #ifdef FIRMWARE_MINIMAL AddLog(LOG_LEVEL_INFO, PSTR(D_WARNING_MINIMAL_VERSION));