mirror of
https://github.com/DaKerboul/perun.git
synced 2026-08-09 19:05:39 +02:00
DCS World status
This commit is contained in:
@@ -53,10 +53,10 @@ internal class PerunHelper
|
||||
}
|
||||
|
||||
// Set marker for user flags (markers)
|
||||
LogMarker = (intMarker>0) ? "X" : " ";
|
||||
LogMarker = (intMarker > 0) ? "X" : " ";
|
||||
|
||||
// Set frame type
|
||||
strType=strType.PadLeft(3, ' ');
|
||||
strType = strType.PadLeft(3, ' ');
|
||||
|
||||
if (!bSkipGui)
|
||||
{
|
||||
@@ -73,7 +73,7 @@ internal class PerunHelper
|
||||
Globals.AppUpdateGUI = true;
|
||||
}
|
||||
// Add the entry to log file
|
||||
LogController.instance.WriteLog(logLevel, DateTime.Now.ToString("yyyy-MM-dd ") + " " + DateTime.Now.ToString("HH:mm:ss") + " | Instance: "+ Globals.AppInstanceID + " | " + LogMarker + " | "+ LogDirection + " | "+ strType + " | " + strEntryToAdd);
|
||||
LogController.instance.WriteLog(logLevel, DateTime.Now.ToString("yyyy-MM-dd ") + " " + DateTime.Now.ToString("HH:mm:ss") + " | Instance: " + Globals.AppInstanceID + " | " + LogMarker + " | " + LogDirection + " | " + strType + " | " + strEntryToAdd);
|
||||
}
|
||||
|
||||
// Gets build version
|
||||
@@ -121,4 +121,9 @@ internal class PerunHelper
|
||||
return 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
public static string ConvertSecoundsToString (Double NumberOfSecounds){
|
||||
// TBD
|
||||
return NumberOfSecounds.ToString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user