mirror of
https://github.com/godotengine/godot-csharp-vscode.git
synced 2025-12-31 21:48:32 +03:00
20 lines
370 B
C#
20 lines
370 B
C#
using System;
|
|
|
|
namespace VSCodeDebug
|
|
{
|
|
// Placeholder for VSCodeDebug.Program in vscode-mono-debug
|
|
static class Program
|
|
{
|
|
public static void Log(bool predicate, string format, params object[] data)
|
|
{
|
|
if (predicate)
|
|
Log(format, data);
|
|
}
|
|
|
|
public static void Log(string format, params object[] data)
|
|
{
|
|
Console.Error.WriteLine(format, data);
|
|
}
|
|
}
|
|
}
|