Fix amazon settlement period and other updates

This commit is contained in:
2020-02-11 17:20:45 +00:00
committed by GitHub
parent 7e50da21e7
commit 56647c7648
10 changed files with 128 additions and 46 deletions

View File

@@ -12,7 +12,7 @@ namespace bnhtrade.Core.UI.Console
{
if (newLine)
{
System.Console.WriteLine("[" + DateTime.Now.ToString("HH:mm:ss") + "] " + consoleText);
System.Console.WriteLine("\r[" + DateTime.Now.ToString("HH:mm:ss") + "] " + consoleText);
}
else
{
@@ -23,7 +23,7 @@ namespace bnhtrade.Core.UI.Console
{
do
{
System.Console.Write("\r[--------] " + consoleMessage, string.Format("{0:00}", waitSeconds));
System.Console.Write("\r[--------] " + consoleMessage, string. Format("{0:00}", waitSeconds));
System.Threading.Thread.Sleep(1000);
waitSeconds = waitSeconds - 1;
} while (waitSeconds > 0);