Skip to content

Commit

Permalink
fix: a few rogue level 0 debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ngenovese11 committed Dec 12, 2023
1 parent 08e7c25 commit a994597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CiscoRoomOsCodec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4762,9 +4762,9 @@ public void SetCurrentDirectoryToRoot()
/// <param name="directory"></param>
private void PrintDirectory(CodecDirectory directory)
{
Debug.Console(0, this, "Attempting to Print Directory");
Debug.Console(1, this, "Attempting to Print Directory");
if (directory == null) return;
Debug.Console(0, this, "Directory Results:\n");
Debug.Console(1, this, "Directory Results:\n");

foreach (var item in directory.CurrentDirectoryResults)
{
Expand Down

0 comments on commit a994597

Please sign in to comment.