File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
slack_sdk/oauth/installation_store/file Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ def find_bot(
129129 data = json .loads (f .read ())
130130 return Bot (** data )
131131 except FileNotFoundError as e :
132- message = f"Failed to find bot installation data for enterprise: { e_id } , team: { t_id } : { e } "
133- self .logger .warning (message )
132+ message = f"Installation data missing for enterprise: { e_id } , team: { t_id } : { e } "
133+ self .logger .debug (message )
134134 return None
135135
136136 async def async_find_installation (
@@ -172,8 +172,8 @@ def find_installation(
172172 data = json .loads (f .read ())
173173 return Installation (** data )
174174 except FileNotFoundError as e :
175- message = f"Failed to find an installation data for enterprise: { e_id } , team: { t_id } : { e } "
176- self .logger .warning (message )
175+ message = f"Installation data missing for enterprise: { e_id } , team: { t_id } : { e } "
176+ self .logger .debug (message )
177177 return None
178178
179179 async def async_delete_bot (
You can’t perform that action at this time.
0 commit comments