Skip to content

Commit

Permalink
minor: 降低一些无用日志的等级
Browse files Browse the repository at this point in the history
  • Loading branch information
IMBlues authored and v_yutyi committed Feb 24, 2022
1 parent a379170 commit aaa1c64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/bkuser_core/enhanced_account/middlewares.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def process_request(self, request: HttpRequest):
setattr(request, "operator", operator)

base_info.operator = operator
logger.info(base_info)
logger.debug(base_info)
return


Expand Down
2 changes: 1 addition & 1 deletion src/api/bkuser_core/profiles/v2/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ def batch_query(self, request):

domain_username_map[domain].append(username)

logger.info("going to query username list: %s", username_list)
logger.debug("going to query username list: %s", username_list)
if not domain_username_map:
profiles = Profile.objects.filter(enabled=True)
else:
Expand Down

0 comments on commit aaa1c64

Please sign in to comment.