Skip to content

Commit

Permalink
add debug output for UnicodeTextConverter
Browse files Browse the repository at this point in the history
  • Loading branch information
zivillian committed Jan 13, 2022
1 parent 6db4111 commit 00950a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ism7mqtt/ISM7/Xml/UnicodeTextConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public class UnicodeTextConverter:MultiTelegramConverterTemplateBase
{
public override void AddTelegram(ushort telegram, byte low, byte high)
{
throw new NotImplementedException();
Console.Error.WriteLine($"UnicodeTextConverter: T:{telegram} H:{high} L:{low}");
}

public override bool HasValue => throw new NotImplementedException();
public override bool HasValue => false;

public override JValue GetValue()
{
Expand Down

0 comments on commit 00950a6

Please sign in to comment.