Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Logging
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Logging
Merge requests
!25
Fix: Correct the date format to 24h (coscine/issues#2097)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Correct the date format to 24h (coscine/issues#2097)
Hotfix/2097-fixTimeFormat
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Amin Yazdi
requested to merge
Hotfix/2097-fixTimeFormat
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
coscine/issues#2097
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
2df97cd8
1 commit,
3 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Logging/AnalyticsLogObject.cs
+
2
−
2
Options
using
System
;
using
System
;
using
System.Collections.Generic
;
namespace
Coscine.Logging
@@ -478,7 +478,7 @@ namespace Coscine.Logging
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
;
}
}
Loading