]> git.proxmox.com Git - pve-manager.git/commitdiff
PVE/APLInfo.pm: avoid locale specific time stamps
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 24 Apr 2017 05:24:12 +0000 (07:24 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 24 Apr 2017 05:24:12 +0000 (07:24 +0200)
PVE/APLInfo.pm

index 3bb261fcb4c9cde26b33fb29732069eea100cb8d..006a7c593ce34f42c32e7d5af2f010ab82cd0eb1 100644 (file)
@@ -16,7 +16,7 @@ sub logmsg {
 
     chomp $msg;
 
-    my $tstr = strftime ("%b %d %H:%M:%S", localtime);
+    my $tstr = strftime ("%F %H:%M:%S", localtime);
 
     foreach my $line (split (/\n/, $msg)) {
        print $logfd "$tstr $line\n";