fix useapi mutil return bug

This commit is contained in:
2021-06-03 17:16:55 +08:00
parent a6f32c6e43
commit 8550d663de
2 changed files with 24 additions and 6 deletions
+7
View File
@@ -37,5 +37,12 @@ namespace SimApi.Helpers
return strbul.ToString();
}
public static void Log(string message, string type = "Information")
{
Console.WriteLine($"[ SimApi ][ {DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:ffff")} ][ {type} ]");
Console.WriteLine(message);
Console.WriteLine("");
}
}
}