From e2b3ca55bef2d2f1f4e6b6342d3b8dde863b8bf4 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 7 Jan 2021 00:14:45 +0100 Subject: [PATCH] Two small changes to the application startup logging. --- es-app/src/views/ViewController.cpp | 2 +- es-core/src/InputManager.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index 0faf8bfd7..1c735c1ec 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -89,7 +89,7 @@ void ViewController::goToStart() // configuration has been performed. if (InputManager::getInstance()-> getInputConfigByDevice(DEVICE_KEYBOARD)->getDefaultConfigFlag()) { - LOG(LogInfo) << "Applying default keyboard mappings"; + LOG(LogInfo) << "Applying default keyboard mappings..."; if (Settings::getInstance()->getBool("ShowDefaultKeyboardWarning")) { std::string message = "NO KEYBOARD CONFIGURATION COULD BE\n" diff --git a/es-core/src/InputManager.cpp b/es-core/src/InputManager.cpp index 7dda7e847..205714509 100644 --- a/es-core/src/InputManager.cpp +++ b/es-core/src/InputManager.cpp @@ -335,7 +335,7 @@ bool InputManager::loadInputConfig(InputConfig* config) std::string path = getConfigPath(); if (!Utils::FileSystem::exists(path)) { if (config->getDeviceName() == "Keyboard") { - LOG(LogDebug) << "InputManager::loadInputConfig(): Assigning default keyboard " + LOG(LogDebug) << "InputManager::loadInputConfig(): Will assign default keyboard " "mappings as there is no es_input.cfg configuration file"; loadDefaultKBConfig(); config->setDefaultConfigFlag();