Skip to content

Commit

Permalink
chore: remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMin5 committed Jan 16, 2024
1 parent e187b0a commit af5add0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/spaceone/cost_analysis/manager/identity_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def get_workspace(self, workspace_id: str, domain_id: str) -> str:
return workspace_id

def list_service_accounts(self, query: dict, domain_id: str) -> dict:
_LOGGER.debug(f"[list_service_accounts] token_type: {self.token_type}")
if self.token_type == "SYSTEM_TOKEN":
return self.identity_conn.dispatch(
"ServiceAccount.list", {"query": query}, x_domain_id=domain_id
Expand Down
2 changes: 1 addition & 1 deletion src/spaceone/cost_analysis/manager/job_task_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def push_job_task(self, params):
],
}

_LOGGER.debug(f"[push_job_task] task: {task}")
_LOGGER.debug(f"[push_job_task] task param: {params}")

queue.put("cost_analysis_q", utils.dump_json(task))

Expand Down

0 comments on commit af5add0

Please sign in to comment.