Close plugin log handlers on disable
This commit is contained in:
parent
81d83bdd8a
commit
2b304ecebc
@ -355,6 +355,10 @@ public class BungeeCord extends ProxyServer
|
||||
try
|
||||
{
|
||||
plugin.onDisable();
|
||||
for ( Handler handler : plugin.getLogger().getHandlers() )
|
||||
{
|
||||
handler.close();
|
||||
}
|
||||
} catch ( Throwable t )
|
||||
{
|
||||
getLogger().severe( "Exception disabling plugin " + plugin.getDescription().getName() );
|
||||
|
Loading…
Reference in New Issue
Block a user