Skip to content

Commit d71522a

Browse files
authored
Implement ScriptDirect method in Logger class
1 parent 6120b06 commit d71522a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

HashifyNETCLI/Core/Logger.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// *
1+
// *
22
// *****************************************************************************
33
// *
44
// * Copyright (c) 2025 Deskasoft International
@@ -101,6 +101,11 @@ public static void Script(string message, params object[] args)
101101
Print(3, message, null, null, false, args);
102102
}
103103

104+
public static void ScriptDirect(string message, params object[] args)
105+
{
106+
Print(3, message, null, null, true, args);
107+
}
108+
104109
public static void Debug(string message, params object[] args)
105110
{
106111
Print(0, message, null, null, false, args);

0 commit comments

Comments
 (0)