From b07df5cb231b05a8d1bea812233b4f70745cbe0c Mon Sep 17 00:00:00 2001
From: Marcel Nellesen <nellesen@itc.rwth-aachen.de>
Date: Wed, 18 Dec 2019 10:00:59 +0100
Subject: [PATCH] Included missing function (coscine/issues#461)

---
 src/Logging/CoscineLogger.cs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/Logging/CoscineLogger.cs b/src/Logging/CoscineLogger.cs
index 6a735e7..3395d72 100644
--- a/src/Logging/CoscineLogger.cs
+++ b/src/Logging/CoscineLogger.cs
@@ -223,6 +223,11 @@ namespace Coscine.Logging
             Log(messageType, context, null, exception);
         }
 
+        public void Log(LogType messageType, string message, Exception exception)
+        {
+            Log(messageType, null, message, exception);
+        }
+
         public void Log(LogType messageType, Type context, string message, Exception exception)
         {
             UpdateActiveLogs();
-- 
GitLab