Hi Tom,
Unfortunately, AFAIK there are no such feature and extensions. In
addition, Sphinx goes documentation build step by step. Read all
documents, transform them all, convert and write them all... So it is
difficult to measure build time per document.
FWIW, as a quick hack, you can see reading and writing time per
document with adding code to your `conf.py`:
```
import logging
from sphinx.util.logging import ColorizeFormatter
logger = logging.getLogger('sphinx')
for handler in logger.handlers:
handler.setFormatter(ColorizeFormatter('%(asctime)-15s %(message)s'))
```
It might be good to give `-v` option to sphinx-build command.
Thanks,
Takeshi KOMIYA
2019年11月13日(水) 2:16 Thomas Robitaille <
thomas.r...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups "sphinx-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
sphinx-users...@googlegroups.com.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/sphinx-users/893e07b3-77a7-4421-97b9-1ca4b1a1bacc%40googlegroups.com.