Remove debug message in startup
This commit is contained in:
parent
8fac84d591
commit
50f4647d25
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,6 @@ namespace IllusionInjector
|
|||
|
||||
public void OnApplicationStart()
|
||||
{
|
||||
Debug.LogWarning($"OnApplicationStart Test Warning");
|
||||
Invoke(plugin => plugin.OnApplicationStart(), "OnApplicationStart");
|
||||
}
|
||||
|
||||
|
@ -37,8 +36,10 @@ namespace IllusionInjector
|
|||
try
|
||||
{
|
||||
callback(plugin);
|
||||
#if DEBUG
|
||||
if (!string.IsNullOrEmpty(name))
|
||||
Debug.LogWarning($"Executed {name} for plugin {plugin.Name}");
|
||||
#endif
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue