Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit c30cb31

Browse files
committed
Switched the formatter's strip header log output to LOG.debug
1 parent 641ed79 commit c30cb31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: script/formatting/formatter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ def format_file(file_path, add_header, strip_header, clang_format_code):
107107
if header_match is None:
108108
return
109109

110-
LOG.info("Header match ")
110+
LOG.debug("Header match ")
111111

112112
header_comment = header_match.group()
113113

114-
LOG.info("Header comment : %s", header_comment)
114+
LOG.debug("Header comment : %s", header_comment)
115115

116116
new_file_data = file_data.replace(header_comment,"")
117117

0 commit comments

Comments
 (0)