Skip to content

Commit 988f50b

Browse files
committed
Remove logs
1 parent bc579c9 commit 988f50b

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
@@ -188,7 +188,6 @@ def write_objects(queue: Queue[types.ObjectJsonRepr], fd: TextIO, object_type: s
188188
obj_json = __prep_json_for_write(obj_json, {**export_settings, EXPORT_EMPTY: True})
189189
else:
190190
obj_json = __prep_json_for_write(obj_json, export_settings)
191-
log.info("CONVERTED WRITING %s", utilities.json_dump(obj_json))
192191
key = "" if isinstance(obj_json, list) else obj_json.get("key", obj_json.get("login", obj_json.get("name", "unknown")))
193192
log.debug("Writing %s key '%s'", object_type[:-1], key)
194193
if object_type in objects_exported_as_lists or object_type in objects_exported_as_whole:

sonar/util/common_json_helper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,5 @@ def convert_common_fields(json_data: dict[str, Any], with_permissions: bool = Tr
3030
for perm in json_data["permissions"]:
3131
perm["permissions"] = utilities.csv_to_list(perm["permissions"])
3232
if "tags" in json_data:
33-
log.info("CONVERTING TAGS %s", json_data["tags"])
3433
json_data["tags"] = utilities.csv_to_list(json_data["tags"])
3534
return json_data

0 commit comments

Comments
 (0)