We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e23cf commit 31c3cb6Copy full SHA for 31c3cb6
autopts/pybtp/iutctl_common.py
@@ -82,6 +82,8 @@ def write_to_log(self, req, data, hex_data):
82
f = self.log_file
83
indent = ' ' * 18
84
85
+ hex_data = hex_data[:14] + "|" + hex_data[14 + 1:]
86
+
87
if len(hex_data) > 47:
88
# This ensures clean text indentation for longer raw data, with 16 bytes per line
89
hex_data = '\n' + indent + re.sub(r'(.{48})', r'\1\n' + indent, hex_data)
0 commit comments