Skip to content

Commit

Permalink
Quiet down some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cinderblocks committed Jan 17, 2022
1 parent 67d050b commit caf9206
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Radegast/GUI/Rendering/RenderAvatar.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Radegast Metaverse Client
* Copyright(c) 2009-2014, Radegast Development Team
* Copyright(c) 2016-2020, Sjofn, LLC
* Copyright(c) 2016-2022, Sjofn, LLC
* All rights reserved.
*
* Radegast is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -1116,7 +1116,7 @@ public static void addanimation(OpenMetaverse.Assets.Asset asset, UUID tid, BinB
{
b = new BinBVHAnimationReader(asset.AssetData);
mAnimationCache[asset.AssetID] = b;
Logger.Log("Adding new decoded animaton known animations " + asset.AssetID, Helpers.LogLevel.Info);
Logger.Log($"Adding new decoded animaton known animations {asset.AssetID}", Helpers.LogLevel.Debug);
}

if (!av.glavatar.skel.mAnimationsWrapper.ContainsKey(animKey))
Expand Down Expand Up @@ -1654,7 +1654,7 @@ public static void addbone(XmlNode bone, Bone parent)
lock (mBones) mBones.Add(b.name, b);
mIndexedBones.Add(boneaddindex++, b);

Logger.Log("Found bone " + b.name, Helpers.LogLevel.Info);
Logger.Log($"Found bone {b.name}", Helpers.LogLevel.Debug);

foreach (XmlNode childbone in bone.ChildNodes)
{
Expand Down
2 changes: 1 addition & 1 deletion Radegast/GUI/Rendering/Rendering.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ private void UpdateAvatarAnimations(RenderAvatar av)
continue;
}

Logger.Log("Requesting new animation asset " + anim.AnimationID, Helpers.LogLevel.Info);
Logger.Log($"Requesting new animation asset {anim.AnimationID}", Helpers.LogLevel.Debug);

Client.Assets.RequestAsset(anim.AnimationID, AssetType.Animation, false, SourceType.Asset, tid, AnimRecievedCallback);
}
Expand Down

0 comments on commit caf9206

Please sign in to comment.