mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Prevents join map info from printing on program start (JoinMapBaseAdvanced constructor) unless debug level is > 0
This commit is contained in:
parent
2897ec1d83
commit
24a435c965
1 changed files with 4 additions and 1 deletions
|
|
@ -233,7 +233,10 @@ namespace PepperDash.Essentials.Core
|
|||
}
|
||||
|
||||
|
||||
PrintJoinMapInfo();
|
||||
if (Debug.Level > 0)
|
||||
{
|
||||
PrintJoinMapInfo();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue