Added logging.

This commit is contained in:
Razmoth
2023-01-29 21:04:02 +04:00
parent 964d908e66
commit 6740772656
8 changed files with 175 additions and 117 deletions

View File

@@ -14,7 +14,7 @@ namespace AssetStudioGUI
this.action = action;
}
public void Log(LoggerEvent loggerEvent, string message)
public string Log(LoggerEvent loggerEvent, string message)
{
switch (loggerEvent)
{
@@ -28,7 +28,7 @@ namespace AssetStudioGUI
action(message);
break;
}
return message;
}
}
}