From f23cf8e652879384812a63aa38bf782fcb100b6b Mon Sep 17 00:00:00 2001 From: Peter M. Groen Date: Tue, 5 Apr 2022 18:02:42 +0200 Subject: [PATCH] Setting up the logger --- include/log.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+), 0 deletions(-) create mode 100644 include/log.h diff --git a/include/log.h b/include/log.h new file mode 100644 index 0000000..9ac86a3 --- /dev/null +++ b/include/log.h @@ -0,0 +1,22 @@ +#pragma once + +#include +#include + +namespace osdev { +namespace components { +namespace mqtt { + +static void LogTrace(); + +static void LogDebug(); + +static void LogInfo(); + +static void LogWarning(); + +static void LogError(); + +} /* End namespace mqtt */ +} /* End namespace components */ +} /* End namespace osdev */ -- libgit2 0.21.4