Skip to content

Commit

Permalink
Updated the logger to post the symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
mccaffers committed Feb 15, 2024
1 parent df6ca3d commit b99adc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/ConsoleLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public static class ConsoleLogger {
}
}

public static void Lambda(string message){
public static void Lambda(string symbol, string message){
if(lambdaLog){
System.Console.WriteLine(message);
System.Console.WriteLine(symbol + " - " + message);
}
}

Expand Down

0 comments on commit b99adc3

Please sign in to comment.