Change some PluginLog output verbosity scales and make independent of DEBUG macro.

This commit is contained in:
Ottermandias 2021-08-19 17:41:19 +02:00
parent bcc68d6684
commit 5c2f8aedad
2 changed files with 6 additions and 10 deletions

View file

@ -66,14 +66,14 @@ namespace Penumbra.UI
foreach( var fileName in picker.FileNames )
{
PluginLog.Log( $"-> {fileName} START" );
PluginLog.Information( $"-> {fileName} START" );
try
{
_texToolsImport = new TexToolsImport( _manager.BasePath );
_texToolsImport.ImportModPack( new FileInfo( fileName ) );
PluginLog.Log( $"-> {fileName} OK!" );
PluginLog.Information( $"-> {fileName} OK!" );
}
catch( Exception ex )
{