Skip to content
Snippets Groups Projects
Commit b07df5cb authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Included missing function (coscine/issues#461)

parent cec87316
No related branches found
No related tags found
1 merge request!1New: Created the Logging library
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment