Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
No results found
Select Git revision
Loading items
Show changes
Commits on Source (3)
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Coscine.Logging namespace Coscine.Logging
...@@ -478,7 +478,7 @@ namespace Coscine.Logging ...@@ -478,7 +478,7 @@ namespace Coscine.Logging
private static string FormatTimestamp(DateTime timestamp) private static string FormatTimestamp(DateTime timestamp)
{ {
string formattedDateTime = string.Format("{0:yyyy-MM-dd hh:mm:ss.fff}", timestamp); string formattedDateTime = string.Format("{0:yyyy-MM-dd HH:mm:ss.fff}", timestamp);
return formattedDateTime; return formattedDateTime;
} }
} }
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<RootNamespace>Coscine.Logging</RootNamespace> <RootNamespace>Coscine.Logging</RootNamespace>
<AssemblyName>Coscine.Logging</AssemblyName> <AssemblyName>Coscine.Logging</AssemblyName>
<TargetFrameworks>net6.0;net461</TargetFrameworks> <TargetFrameworks>net6.0;net461</TargetFrameworks>
<Version>2.2.0</Version> <Version>2.2.1</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<Authors>RWTH Aachen University</Authors> <Authors>RWTH Aachen University</Authors>
......