We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5dc403 commit 23c32b9Copy full SHA for 23c32b9
1 file changed
Code/Helpers/Log.cs
@@ -49,7 +49,12 @@ public static void CompileError(string scrName, string msg)
49
{
50
Logger.Raw($"[Script '{scrName}'] [Compile error] {msg}", ConsoleColor.Red);
51
}
52
-
+
53
+ public static void CompileError(string scrName, uint line, string msg)
54
+ {
55
+ Logger.Raw($"[Script '{scrName}'] [Compile error] [Line {line}] {msg}", ConsoleColor.Red);
56
+ }
57
58
public static void D(string msg)
59
60
#if DEBUG
0 commit comments