Skip to content

Commit bc90759

Browse files
committed
test: remove log for testing
1 parent 9cac9d1 commit bc90759

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

cpp_linter_hooks/clang_format.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
import sys
33
from argparse import ArgumentParser
44
from typing import Tuple
5-
import logging
5+
66
from .util import ensure_installed, DEFAULT_CLANG_FORMAT_VERSION
77

8-
LOG = logging.getLogger(__name__)
98

109
parser = ArgumentParser()
1110
parser.add_argument("--version", default=DEFAULT_CLANG_FORMAT_VERSION)
@@ -25,8 +24,6 @@ def run_clang_format(args=None) -> Tuple[int, str]:
2524

2625
command.extend(other_args)
2726

28-
LOG.warning(command)
29-
3027
try:
3128
# Run the clang-format command with captured output
3229
sp = subprocess.run(

0 commit comments

Comments
 (0)