Skip to content

Commit

Permalink
facebook: update logging
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Nov 6, 2024
1 parent 2930769 commit fcad320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automon/integrations/facebook/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def get(self, url: str) -> bool:
start = datetime.datetime.now().timestamp()

result = self._browser.get(url=url)
logger.info(f'{url} :: {result}')
logger.info(f'{url} :: {round(len(self._browser.webdriver.page_source) / 1024)} KB')

end = datetime.datetime.now().timestamp()
seconds_elapsed = int(end - start)
Expand Down

0 comments on commit fcad320

Please sign in to comment.