mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-25 08:22:17 +00:00
Bugfixed logging handling
This commit is contained in:
+3
-3
@@ -5,12 +5,12 @@
|
||||
<TargetFrameworks>netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0</TargetFrameworks>
|
||||
<ApplicationIcon />
|
||||
<StartupObject />
|
||||
<Version>1.3.5</Version>
|
||||
<Version>1.3.6</Version>
|
||||
<Authors>Alexandru-Victor Macocian</Authors>
|
||||
<Product>MTSC</Product>
|
||||
<Description>Modular TCP Server and Client</Description>
|
||||
<AssemblyVersion>0.1.3.5</AssemblyVersion>
|
||||
<FileVersion>0.1.3.5</FileVersion>
|
||||
<AssemblyVersion>0.1.3.6</AssemblyVersion>
|
||||
<FileVersion>0.1.3.6</FileVersion>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
<PackageProjectUrl>https://github.com/AlexMacocian/MTSC</PackageProjectUrl>
|
||||
|
||||
@@ -139,7 +139,10 @@ namespace MTSC.Server
|
||||
{
|
||||
foreach (ILogger logger in loggers)
|
||||
{
|
||||
logger.Log(log);
|
||||
if (logger.Log(log))
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
@@ -150,7 +153,10 @@ namespace MTSC.Server
|
||||
{
|
||||
foreach (ILogger logger in loggers)
|
||||
{
|
||||
logger.LogDebug(debugMessage);
|
||||
if (logger.LogDebug(debugMessage))
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user