From ccb9380559ab21739959d68961b09a0ac7dc8044 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 18 Feb 2023 20:32:36 +0100 Subject: [PATCH] Added a comment to the Log file headers that the class is thread safe. --- es-core/src/Log.cpp | 1 + es-core/src/Log.h | 1 + 2 files changed, 2 insertions(+) diff --git a/es-core/src/Log.cpp b/es-core/src/Log.cpp index 821852a12..e66fb31ea 100644 --- a/es-core/src/Log.cpp +++ b/es-core/src/Log.cpp @@ -4,6 +4,7 @@ // Log.cpp // // Log output. +// This class is thread safe. // #include "Log.h" diff --git a/es-core/src/Log.h b/es-core/src/Log.h index 0f412b4eb..0f165cd04 100644 --- a/es-core/src/Log.h +++ b/es-core/src/Log.h @@ -4,6 +4,7 @@ // Log.h // // Log output. +// This class is thread safe. // #ifndef ES_CORE_LOG_H