diff options
| author | Daniel Hahler <git@thequod.de> | 2019-04-29 23:08:05 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-05-15 06:57:26 +0200 |
| commit | 43f54e136e9282f5c0bfcf1169d0d59b3c365add (patch) | |
| tree | 248ba78adbc4f390b627d33049d50f9a7bf86859 | |
| parent | d3294845347a61b085e9757c757e4290979e1d10 (diff) | |
Refs #27685 -- Logged unexpected Watchman autoreloader errors.
| -rw-r--r-- | django/utils/autoreload.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py index 559812d9c3..7ca0d68fae 100644 --- a/django/utils/autoreload.py +++ b/django/utils/autoreload.py @@ -509,6 +509,7 @@ class WatchmanReloader(BaseReloader): except pywatchman.SocketTimeout: pass except pywatchman.WatchmanError as ex: + logger.debug('Watchman error: %s, checking server status.', ex) self.check_server_status(ex) else: for sub in list(self.client.subs.keys()): |
