修改日志输出等级

This commit is contained in:
ww-rm
2025-11-03 18:09:05 +08:00
parent decbb10fcb
commit c68a91fe3f
26 changed files with 77 additions and 77 deletions

View File

@@ -37,7 +37,7 @@ namespace Spine.Implementations.V38
}
catch (Exception ex)
{
_logger.Trace(ex.ToString());
_logger.Debug(ex.ToString());
throw new InvalidDataException($"Failed to load atlas '{atlasPath}'");
}
@@ -51,7 +51,7 @@ namespace Spine.Implementations.V38
}
catch (Exception ex)
{
_logger.Trace(ex.ToString());
_logger.Debug(ex.ToString());
_skeletonData = new SkeletonBinary(_atlas).ReadSkeletonData(skelPath);
}
}
@@ -63,7 +63,7 @@ namespace Spine.Implementations.V38
}
catch (Exception ex)
{
_logger.Trace(ex.ToString());
_logger.Debug(ex.ToString());
_skeletonData = new SkeletonJson(_atlas).ReadSkeletonData(skelPath);
}
}
@@ -71,7 +71,7 @@ namespace Spine.Implementations.V38
catch (Exception ex)
{
_atlas.Dispose();
_logger.Trace(ex.ToString());
_logger.Debug(ex.ToString());
throw new InvalidDataException($"Failed to load skeleton file {skelPath}");
}