U
    9%e                     @   s&  d Z ddlZddlZddlmZmZmZmZmZmZm	Z	m
Z
 ddlmZ ejejej
ejejdZej
ZedddZejdd	d
Zdd ZddddZddddZd%ee ejdddZedddZeddddZdd Zdd Zdd Zdd  Zddd!d"Zddd#d$Ze  dS )&z Logging utilities.    N)CRITICALDEBUGERRORFATALINFONOTSETWARNWARNING)Optional)debuginfowarningerrorcritical)returnc                   C   s   t dd S )N.r   )__name__split r   r   \/var/www/html/Darija-Ai-API/env/lib/python3.8/site-packages/huggingface_hub/utils/logging.py_get_library_name+   s    r   c                   C   s   t t S N)logging	getLoggerr   r   r   r   r   _get_library_root_logger/   s    r   c               	   C   sH   t dd} | rD| tkr t|  S t d|  ddt   tS )z
    If HUGGINGFACE_HUB_VERBOSITY env var is set to one of the valid choices
    return that as the new default level. If it is not - fall back to
    `_default_log_level`
    ZHUGGINGFACE_HUB_VERBOSITYNz)Unknown option HUGGINGFACE_HUB_VERBOSITY=z, has to be one of: z, )	osgetenv
log_levelsr   r   r   joinkeys_default_log_level)Zenv_level_strr   r   r   _get_default_logging_level3   s    r!   c                  C   s$   t  } | t  | t  d S r   )r   
addHandlerr   StreamHandlersetLevelr!   Zlibrary_root_loggerr   r   r   _configure_library_root_loggerE   s    r&   c                  C   s   t  } | tj d S r   )r   r$   r   r   r%   r   r   r   _reset_library_root_loggerK   s    r'   )namer   c                 C   s   | dkrt  } t| S )a  
        Returns a logger with the specified name. This function is not supposed
        to be directly accessed by library users.

        Args:
            name (`str`, *optional*):
                The name of the logger to get, usually the filename

        Example:

    ```python
    >>> from huggingface_hub import get_logger

    >>> logger = get_logger(__file__)
    >>> logger.set_verbosity_info()
    ```
    N)r   r   r   )r(   r   r   r   
get_loggerP   s    r)   c                   C   s
   t   S )a	  Return the current level for the HuggingFace Hub's root logger.

    Returns:
        Logging level, e.g., `huggingface_hub.logging.DEBUG` and
        `huggingface_hub.logging.INFO`.

    <Tip>

    HuggingFace Hub has following logging levels:

    - `huggingface_hub.logging.CRITICAL`, `huggingface_hub.logging.FATAL`
    - `huggingface_hub.logging.ERROR`
    - `huggingface_hub.logging.WARNING`, `huggingface_hub.logging.WARN`
    - `huggingface_hub.logging.INFO`
    - `huggingface_hub.logging.DEBUG`

    </Tip>
    )r   getEffectiveLevelr   r   r   r   get_verbosityi   s    r+   )	verbosityr   c                 C   s   t  |  dS )z
    Sets the level for the HuggingFace Hub's root logger.

    Args:
        verbosity (`int`):
            Logging level, e.g., `huggingface_hub.logging.DEBUG` and
            `huggingface_hub.logging.INFO`.
    N)r   r$   )r,   r   r   r   set_verbosity   s    	r-   c                   C   s   t tS )z/
    Sets the verbosity to `logging.INFO`.
    )r-   r   r   r   r   r   set_verbosity_info   s    r.   c                   C   s   t tS )z2
    Sets the verbosity to `logging.WARNING`.
    )r-   r	   r   r   r   r   set_verbosity_warning   s    r/   c                   C   s   t tS )z0
    Sets the verbosity to `logging.DEBUG`.
    )r-   r   r   r   r   r   set_verbosity_debug   s    r0   c                   C   s   t tS )z0
    Sets the verbosity to `logging.ERROR`.
    )r-   r   r   r   r   r   set_verbosity_error   s    r1   c                   C   s   dt  _dS )zo
    Disable propagation of the library log outputs. Note that log propagation is
    disabled by default.
    FNr   	propagater   r   r   r   disable_propagation   s    r4   c                   C   s   dt  _dS )z
    Enable propagation of the library log outputs. Please disable the
    HuggingFace Hub's default handler to prevent double logging if the root
    logger has been configured.
    TNr2   r   r   r   r   enable_propagation   s    r5   )N) __doc__r   r   r   r   r   r   r   r   r   r	   typingr
   r   r    strr   Loggerr   r!   r&   r'   r)   intr+   r-   r.   r/   r0   r1   r4   r5   r   r   r   r   <module>   s4   (
	