Skip to content

Commit 5743981

Browse files
committed
Remove logs
1 parent 200eef3 commit 5743981

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

cli/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ def write_objects(queue: Queue[types.ObjectJsonRepr], fd: TextIO, object_type: s
183183
while not done:
184184
obj_json = queue.get()
185185
if not (done := obj_json is utilities.WRITE_END):
186-
log.info("WRITING %s", utilities.json_dump(obj_json))
187186
if object_type == "groups":
188187
obj_json = __prep_json_for_write(obj_json, {**export_settings, EXPORT_EMPTY: True})
189188
else:

sonar/portfolios.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,6 @@ def to_json(self, export_settings: types.ConfigSettings) -> types.ObjectJsonRepr
370370
if not self.is_sub_portfolio():
371371
json_data["visibility"] = self._visibility
372372
if perms := self.permissions().export(export_settings=export_settings):
373-
log.info("%s PERMS = %s", self, str(perms))
374373
json_data["permissions"] = util.perms_to_list(perms)
375374
json_data["tags"] = self._tags
376375
if subportfolios:

0 commit comments

Comments
 (0)