in AMP/Services/ILoggingService.cs [54:61]
public void Debug(string message)
{
if (IsEnabled)
LogUtil.Debug(message);
if (EmitToConsole)
System.Diagnostics.Debug.WriteLine($"");
}