Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tsoc
hg-misc-tools
Commits
efec2c1d
Commit
efec2c1d
authored
Mar 05, 2026
by
one
Browse files
[xcl-lens] Add --no-raw
parent
08efe206
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
projects/xcl-lens/src/xcl_lens/main.py
projects/xcl-lens/src/xcl_lens/main.py
+2
-2
No files found.
projects/xcl-lens/src/xcl_lens/main.py
View file @
efec2c1d
...
...
@@ -34,7 +34,7 @@ def main():
# Parse command line arguments
parser
=
argparse
.
ArgumentParser
(
description
=
"RCCL Log Parser Wrapper"
)
parser
.
add_argument
(
"--raw"
,
action
=
"store_true"
,
help
=
"
P
rint raw log lines in addition to the report"
"--
no-
raw"
,
action
=
"store_true"
,
help
=
"
Don't p
rint raw log lines in addition to the report"
)
parser
.
add_argument
(
"-v"
,
"--verbose"
,
action
=
"store_true"
,
help
=
"Print verbose reports"
)
parser
.
add_argument
(
...
...
@@ -72,7 +72,7 @@ def main():
# Collect all output lines
for
line
in
process
.
stdout
:
if
args
.
raw
:
if
not
args
.
no_
raw
:
print
(
f
"
{
line
}
"
,
end
=
""
,
flush
=
True
)
parser
.
collect
(
line
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment