Skip to content

Commit 9536915

Browse files
committed
[reassembler] sbd be less verbose
1 parent 71afa5b commit 9536915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iridiumtk/reassembler/sbd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ def process_l2(self,q):
5959
if data[0]==0x76:
6060
if ul:
6161
if data[1]<0x0c or data[1]>0x0e:
62-
print("WARN: SBD: ul pkt with unclear type",data.hex(":"), file=sys.stderr)
62+
#print("WARN: SBD: ul pkt with unclear type",data.hex(":"), file=sys.stderr)
6363
return
6464
else:
6565
if data[1]<0x08 or data[1]>0x0b:
66-
print("WARN: SBD: dl pkt with unclear type",data.hex(":"), file=sys.stderr)
66+
#print("WARN: SBD: dl pkt with unclear type",data.hex(":"), file=sys.stderr)
6767
return
6868

6969
if data[0]==0x06:

0 commit comments

Comments
 (0)