mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-27 03:43:45 +03:00
24 lines
560 B
ReStructuredText
24 lines
560 B
ReStructuredText
================
|
|
Enable Logging
|
|
================
|
|
|
|
Telethon makes use of the `logging`__ module, and you can enable it as follows:
|
|
|
|
.. code-block:: python
|
|
|
|
import logging
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
You can also use it in your own project very easily:
|
|
|
|
.. code-block:: python
|
|
|
|
import logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
logger.debug('Debug messages')
|
|
logger.info('Useful information')
|
|
logger.warning('This is a warning!')
|
|
|
|
|
|
__ https://docs.python.org/3/library/logging.html |