From 3b146d47d07f3ea48646988c2803f7c4ae84b03d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 13 Jun 2019 11:06:44 +0200 Subject: [PATCH] CI: Remove mention of cLog from documentation --- ci/HACKING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/HACKING.md b/ci/HACKING.md index 1ffa4db8d..02eb8fd17 100644 --- a/ci/HACKING.md +++ b/ci/HACKING.md @@ -183,8 +183,8 @@ connect( m_moduleManager, &Calamares::ModuleManager::modulesLoaded, [this] Debugging --------- -Use `cDebug()` and `cLog()` from `utils/Logger.h`. You can pass a debug-level to -either macro (6 is debugging, higher is less important). Use `cWarning()` for warning +Use `cDebug()` from `utils/Logger.h`. You can pass a debug-level to the +macro (6 is debugging, higher is less important). Use `cWarning()` for warning messages (equivalent to level 2) and `cError()` for errors (level 1). Warnings and errors will add relevant text automatically. See `libcalamares/utils/Logger.h` for details.