Current File : //proc/self/root/lib/python3.12/logging/__pycache__/config.cpython-312.pyc
�

�(�g6����dZddlZddlZddlZddlZddlZddlZddlZddlZddl	Z	ddl
Z
ddlZddlm
Z
mZdZej Zdadd�Zd�Zd�Zd�Zd	�Zd
�Zd�Zd�Zej6d
ej8�Zd�ZGd�de�Z Gd�de!e �Z"Gd�de#e �Z$Gd�de%e �Z&Gd�de�Z'Gd�de'�Z(e(Z)d�Z*edfd�Z+d�Z,y)a
Configuration functions for the logging package for Python. The core package
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
by Apache's log4j system.

Copyright (C) 2001-2022 Vinay Sajip. All Rights Reserved.

To use, simply 'import logging' and log away!
�N)�ThreadingTCPServer�StreamRequestHandleriF#c���ddl}t|t�rZtjj|�st
|�d���tjj|�st|�d���t||j�r|}nX	|j|�}t|d�r|j|�n(tj|�}|j||��t#|�}t%j&�	t)�t+||�}t-|||�t%j.�y#|j $r}t|�d|����d}~wwxYw#t%j.�wxYw)aD
    Read the logging configuration from a ConfigParser-format file.

    This can be called several times from an application, allowing an end user
    the ability to select from various pre-canned configurations (if the
    developer provides a mechanism to present the choices and load the chosen
    configuration).
    rNz doesn't existz is an empty file�readline)�encodingz
 is invalid: )�configparser�
isinstance�str�os�path�exists�FileNotFoundError�getsize�RuntimeError�RawConfigParser�ConfigParser�hasattr�	read_file�io�
text_encoding�read�ParsingError�_create_formatters�logging�_acquireLock�_clearExistingHandlers�_install_handlers�_install_loggers�_releaseLock)	�fname�defaults�disable_existing_loggersrr�cp�e�
formatters�handlerss	         �%/usr/lib/python3.12/logging/config.py�
fileConfigr(5s?����%����w�w�~�~�e�$�#�u�g�^�$<�=�=�������'��%��(9�:�;�;��%��5�5�6�
��	;��*�*�8�4�B��u�j�)����U�#��+�+�H�5��������1�$�B�'�J������� �%�R��4����X�'?�@�������(�(�	;��%��
�a�S�9�:�:��	;��	����s%�	AD8�#E�8E�E�E�E5c���|jd�}|jd�}t|�}|D]}|dz|z}	t||�}�|S#t$rt|�t||�}Y�>wxYw)z)Resolve a dotted name to a global object.�.r)�split�pop�
__import__�getattr�AttributeError)�name�used�found�ns    r'�_resolver4as���:�:�c�?�D��8�8�A�;�D��t��E�
�&���c�z�A�~��	&��E�1�%�E�&��L���	&��t���E�1�%�E�	&�s�A� A/�.A/c�6�ttj|�S�N)�mapr
�strip)�alists r'�
_strip_spacesr:os���s�y�y�%� � �c��|dd}t|�siS|jd�}t|�}i}|D]�}d|z}|j|ddd��}|j|d	dd��}|j|d
dd��}|j|ddd��}tj
}	||jd
�}
|
rt
|
�}	|�&t|tt��}|	||||��}n
|	|||�}|||<��|S)zCreate and return formattersr%�keys�,zformatter_%s�formatTN)�raw�fallback�datefmt�style�%r!�class)r!)	�lenr+r:�getr�	Formatterr4�eval�vars)r#�flistr%�form�sectname�fs�dfs�stlr!�c�
class_name�fs            r'rrrs���|��V�$�E��u�:��	��K�K���E��%� �E��J����!�D�(��
�V�V�H�h�D�4�V�
@���f�f�X�y�d�T�f�B���f�f�X�w�D�3�f�?���6�6�(�J�D�4�6�H��������\�%�%�g�.�
����$�A����H�d�7�m�4�H��"�c�3��2�A��"�c�3��A��
�4��#�$�r;c�`�|dd}t|�siS|jd�}t|�}i}g}|D�]3}|d|z}|d}|jdd�}	t	|tt��}|jdd	�}	t	|	tt��}	|jd
d�}
t	|
tt��}
||	i|
��}||_
d|vr|d}|j|�t|�r|j||�t|tjj�r0|jd
d�}
t|
�r|j!||
f�|||<��6|D]\}}|j#||��|S#ttf$rt|�}Y��7wxYw)zInstall and return handlersr&r=r>z
handler_%srE�	formatter��args�()�kwargsz{}�level�target)rFr+r:rGrIrJrr/�	NameErrorr4r0�setLevel�setFormatter�
issubclassr&�
MemoryHandler�append�	setTarget)r#r%�hlistr&�fixups�hand�section�klass�fmtrWrY�hrZr[�ts               r'rr�s����z�N�6�"�E��u�:��	��K�K���E��%� �E��H�
�F�����\�D�(�)���� ���k�k�+�r�*��	$����W�
�.�E��{�{�6�4�(���D�$�w�-�(�����X�t�,���f�d�7�m�,���4�"�6�"������g���G�$�E�
�J�J�u���s�8�
�N�N�:�c�?�+��e�W�-�-�;�;�<��[�[��2�.�F��6�{��
�
�q�&�k�*�����/�2�!���1�	���H�Q�K� �!��O��+�	�*�	$��U�O�E�	$�s�F�F-�,F-c��tj}|D]o}|jj|}||vrIt	|tj
�r�;|j
tj�g|_d|_	�i||_
�qy)a�
    When (re)configuring logging, handle loggers which were in the previous
    configuration but are not in the new configuration. There's no point
    deleting them as other threads may continue to hold references to them;
    and by disabling them, you stop them doing any logging.

    However, don't disable children of named loggers, as that's probably not
    what was intended by the user. Also, allow existing loggers to NOT be
    disabled if disable_existing is false.
    TN)r�root�manager�
loggerDictr	�PlaceHolderr]�NOTSETr&�	propagate�disabled)�existing�
child_loggers�disable_existingrl�log�loggers      r'�_handle_existing_loggersrx�sn���<�<�D��/�����(�(��-���-���f�g�&9�&9�:�������/�"$���#'�� �.�F�O�/r;c���|dd}|jd�}tt|��}|jd�|d}tj
}|}d|vr|d}|j
|�|jddD]}|j|��|d}	t|	�r7|	jd�}	t|	�}	|	D]}
|j||
��t|jjj��}|j�g}|D�]A}|d	|z}|d
}
|jdd�
�}t	j |
�}|
|vro|j#|
�dz}|
dz}t|�}t|�}||kr*||d||k(r|j%||�|dz
}||kr�*|j|
�d|vr|d}|j
|�|jddD]}|j|��||_d|_|d}	t|	�s��|	jd�}	t|	�}	|	D]}
|j||
����Dt+|||�y)zCreate and install loggers�loggersr=r>rl�logger_rootrZNr&z	logger_%s�qualnamerq�)rAr*r)r+�listr:�removerrlr]r&�
removeHandlerrF�
addHandlerrmrnr=�sort�getint�	getLogger�indexrarqrrrx)r#r&ru�llistrfrlrvrZrircrersrt�qnrqrw�i�prefixed�pflen�num_existings                    r'rr�s���
�y�M�&�!�E��K�K���E���u�%�&�E�	�L�L������G��<�<�D�
�C��'���� �����U��
�]�]�1�
������1����J��E�
�5�z����C� ���e�$���	+�D��N�N�8�D�>�*�	+��D�L�L�+�+�0�0�2�3�H�

�M�M�O��M��2���[�3�&�'��
�Z�
 ���N�N�;��N�;�	��"�"�2�&��
��>����r�"�Q�&�A��C�x�H���M�E��x�=�L��l�"��A�;�v��&�(�2�!�(�(��!��5��Q����l�"�
�O�O�B���g���G�$�E��O�O�E�"�����#�	$�A�� � ��#�	$�$�������
�#���u�:��K�K��$�E�!�%�(�E��
2���!�!�(�4�.�1�
2�52�T�X�}�6F�Gr;c��tjj�tjtjdd�tjdd�=y)z!Clear and close existing handlersN)r�	_handlers�clear�shutdown�_handlerList�r;r'rr"s;�����������W�)�)�!�,�-����Q�r;z^[a-z_][a-z0-9_]*$c�N�tj|�}|std|z��y)Nz!Not a valid Python identifier: %rT)�
IDENTIFIER�match�
ValueError)�s�ms  r'�valid_identr�,s)�������A���<�q�@�A�A�r;c��eZdZdZdd�Zd�Zy)�ConvertingMixinz?For ConvertingXXX's, this mixin class provides common functionsc��|jj|�}||ur1|r|||<t|�ttt
fvr||_||_|Sr6)�configurator�convert�type�ConvertingDict�ConvertingList�ConvertingTuple�parent�key)�selfr��value�replace�results     r'�convert_with_keyz ConvertingMixin.convert_with_key6sW���"�"�*�*�5�1������"��S�	��F�|���.� 0�0� $��
� ��
��
r;c��|jj|�}||ur#t|�ttt
fvr||_|Sr6)r�r�r�r�r�r�r�)r�r�r�s   r'r�zConvertingMixin.convertBsD���"�"�*�*�5�1������F�|���.� 0�0� $��
��
r;N)T)�__name__�
__module__�__qualname__�__doc__r�r�r�r;r'r�r�3s��I�
�r;r�c�&�eZdZdZd�Zdd�Zdd�Zy)r�z A converting dictionary wrapper.c�R�tj||�}|j||�Sr6)�dict�__getitem__r��r�r�r�s   r'r�zConvertingDict.__getitem__W�'��� � ��s�+���$�$�S�%�0�0r;Nc�T�tj|||�}|j||�Sr6)r�rGr��r�r��defaultr�s    r'rGzConvertingDict.get[s'������s�G�,���$�$�S�%�0�0r;c�X�tj|||�}|j||d��S�NF)r�)r�r,r�r�s    r'r,zConvertingDict.pop_s,������s�G�,���$�$�S�%��$�?�?r;r6)r�r�r�r�r�rGr,r�r;r'r�r�Ts��*�1�1�@r;r�c��eZdZdZd�Zdd�Zy)r�zA converting list wrapper.c�R�tj||�}|j||�Sr6)r~r�r�r�s   r'r�zConvertingList.__getitem__er�r;c�P�tj||�}|j|�Sr6)r~r,r�)r��idxr�s   r'r,zConvertingList.popis!������s�#���|�|�E�"�"r;N)���)r�r�r�r�r�r,r�r;r'r�r�cs��$�1�#r;r�c��eZdZdZd�Zy)r�zA converting tuple wrapper.c�V�tj||�}|j||d��Sr�)�tupler�r�r�s   r'r�zConvertingTuple.__getitem__os,���!�!�$��,���$�$�S�%��$�?�?r;N)r�r�r�r�r�r�r;r'r�r�ms��%�@r;r�c��eZdZdZej
d�Zej
d�Zej
d�Zej
d�Z	ej
d�Z
ddd	�Zee
�Zd
�Zd�Zd�Zd
�Zd�Zd�Zd�Zy)�BaseConfiguratorzI
    The configurator base class which defines some useful defaults.
    z%^(?P<prefix>[a-z]+)://(?P<suffix>.*)$z^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$�ext_convert�cfg_convert)�ext�cfgc�F�t|�|_||j_yr6)r��configr�)r�r�s  r'�__init__zBaseConfigurator.__init__�s��$�V�,���#'���� r;c�H�|jd�}|jd�}	|j|�}|D]}|d|zz
}	t||�}�|S#t$r |j|�t||�}Y�DwxYw#t
$r}t
d|�d|���}||�d}~wwxYw)z`
        Resolve strings to objects using standard import and attribute
        syntax.
        r*rzCannot resolve z: N)r+r,�importerr.r/�ImportErrorr�)r�r�r0r1r2�fragr$�vs        r'�resolvezBaseConfigurator.resolve�s���
�w�w�s�|���x�x��{��	��M�M�$�'�E��
1����d�
�"��1�#�E�4�0�E�
1��L��&�1��M�M�$�'�#�E�4�0�E�1���	��a��;�<�A���N��	�s;�A?�A�A?�&A<�9A?�;A<�<A?�?	B!�B�B!c�$�|j|�S)z*Default converter for the ext:// protocol.)r��r�r�s  r'r�zBaseConfigurator.ext_convert�s���|�|�E�"�"r;c�r�|}|jj|�}|�td|z��||j�d}|j|j�d}|r�|jj|�}|r||j�d}nb|jj|�}|rE|j�d}|jj|�s||}n	t|�}||}|r||j�d}ntd|�d|����|r��|S#t$r||}Y�<wxYw)z*Default converter for the cfg:// protocol.NzUnable to convert %rrzUnable to convert z at )�WORD_PATTERNr�r��endr��groups�DOT_PATTERN�
INDEX_PATTERN�
DIGIT_PATTERN�int�	TypeError)r�r��restr��dr�r3s       r'r�zBaseConfigurator.cfg_convert�s>�������#�#�D�)���9��3�e�;�<�<�������>�D����A�H�H�J�q�M�*�A���$�$�*�*�4�0����!�(�(�*�Q�-�(�A��*�*�0�0��6�A���h�h�j��m��#�1�1�7�7��<� !�#��A�+�$'��H��$%�a�D���������>�D�$�38�$�&@�A�A�'�,���$-�+�$%�c�F��+�s�)D%�%D6�5D6c�H�t|t�s$t|t�rt|�}||_|St|t�s$t|t
�rt	|�}||_|St|t�s0t|t�r t|d�st
|�}||_|St|t�ri|jj|�}|rL|j�}|d}|jj|d�}|r|d}t||�}||�}|S)z�
        Convert values to an appropriate type. dicts, lists and tuples are
        replaced by their converting alternatives. Strings are checked to
        see if they have a conversion format and are converted if they do.
        �_fields�prefixN�suffix)r	r�r�r�r�r~r�r�rr
�CONVERT_PATTERNr��	groupdict�value_convertersrGr.)r�r�r�r�r��	converterr�s       r'r�zBaseConfigurator.convert�s���%��0�Z��t�5L�"�5�)�E�!%�E��$��#�E�>�2�z�%��7N�"�5�)�E�!%�E�����E�?�3��E�5�)�'�%��2K�#�E�*�E�!%�E������s�
#��$�$�*�*�5�1�A���K�K�M���8��� �1�1�5�5�f�d�C�	���x�[�F� '��i� 8�I�%�f�-�E��r;c�6�|jd�}t|�s|j|�}|D�cic]}|dk7s�	t|�s�|||��}}|di|��}|jdd�}|r%|j	�D]\}}t|||��|Scc}w)z1Configure an object with a user-supplied factory.rXr*Nr�)r,�callabler�r��items�setattr)	r�r�rQ�krYr��propsr0r�s	         r'�configure_customz!BaseConfigurator.configure_custom�s����J�J�t�����{����Q��A�(.�P�1�1��8��A��!�V�A�Y�,�P��P���V����
�
�3��%���$�{�{�}�
-���e����e�,�
-��
��
Qs�
B�B�	Bc�<�t|t�rt|�}|S)z0Utility function which converts lists to tuples.)r	r~r�r�s  r'�as_tuplezBaseConfigurator.as_tuple�s���e�T�"��%�L�E��r;N)r�r�r�r��re�compiler�r�r�r�r�r��staticmethodr-r�r�r�r�r�r�r�r�r�r;r'r�r�ts����!�b�j�j�!I�J�O��2�:�:�o�.�L��"�*�*�.�/�K��B�J�J�5�6�M��B�J�J�x�(�M������J�'�H�(��*#� �D�8�r;r�c�R�eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	d�Z
d
d	�Zd
d
�Zd
d�Z
y)�DictConfiguratorz]
    Configure logging using a dictionary-like object to describe the
    configuration.
    c�	�|j}d|vrtd��|ddk7rtd|dz��|jdd�}i}tj�	|r�|jd|�}|D]s}|tjvrtd|z��	tj|}||}|jd	d
�}|r$|jtj|���u|jd|�}
|
D]}	|j||
|d
��|jdd
�}|�r$	|j|d
��n|jdd
�}t�|jd|�}
|
D]}	|j|
|�|
|<�|jd|�}|D]}	|j||�||<�|jd|�}g}t|�D]#}	|j!||�}||_|||<�%|D]#}	|j!||�}||_|||<�%tj*}t-|j.j0j3��}|j5�g}|jd|�}
|
D]�}||vro|j7|�dz}|dz}t9|�}t9|�}||kr*||d
||k(r|j)||�|dz
}||kr�*|j;|�	|j||
|���t=|||�|jdd
�}|r	|j|�tj>�y
#t$r}	td|z�|	�d
}	~	wwxYw#t$r}	td|z�|	�d
}	~	wwxYw#t$r}	td�|	�d
}	~	wwxYw#t$r}	td|z�|	�d
}	~	wwxYw#t$r}	td|z�|	�d
}	~	wwxYw#t$rC}	dt%|	j&�vr|j)|�ntd|z�|	�Yd
}	~	��kd
}	~	wwxYw#t$r}	td|z�|	�d
}	~	wwxYw#t$r}	td|z�|	�d
}	~	wwxYw#t$r}	td�|	�d
}	~	wwxYw#tj>�wxYw)zDo the configuration.�versionz$dictionary doesn't specify a versionr}zUnsupported version: %s�incrementalFr&zNo handler found with name %rrZNzUnable to configure handler %rrzTzUnable to configure logger %rrlzUnable to configure root loggerr"r%z Unable to configure formatter %r�filterszUnable to configure filter %rz not configured yetr*) r�r�r,rrrGr�r]�_checkLevel�	Exception�configure_logger�configure_rootr�configure_formatter�configure_filter�sorted�configure_handlerr0r
�	__cause__rarlr~rmrnr=r�r�rFrrxr)r�r�r��
EMPTY_DICTr&r0�handler�handler_configrZr$rzrlrur%r��deferredrsrtr�r�r�r�s                      r'�	configurezDictConfigurator.configure�s��������F�"��C�D�D��)���!��6��	�9J�J�K�K��j�j���6���
�����Q	#��!�:�:�j�*�=��$�
A�D��7�#4�#4�4�(�*3�6:�*;�<�<�A�&-�&7�&7��&=�G�-5�d�^�N�$2�$6�$6�w��$E�E�$� '� 0� 0��1D�1D�U�1K� L��
A�!�*�*�Y�
�;��#�=�D�=��-�-�d�G�D�M�4�H�=��z�z�&�$�/���:��+�+�D�$�7�
$*�:�:�.H�$�#O� �&�(�$�Z�Z��j�A�
�&�G�D�G�+/�+C�+C�<F�t�<L�,N�
�4�(�G�!�*�*�Y�
�;��#�D�D�D�(,�(=�(=�g�d�m�(L���
�D�"�:�:�j�*�=����"�8�,�
A�D�	A�"&�"8�"8��$��"H��'+���)0����	
A�%�=�D�=�"&�"8�"8��$��"H��'+���)0����	=�&�|�|������ 7� 7� <� <� >�?��
�
�
��!#�
� �*�*�Y�
�;��#�=�D��x�'�$�N�N�4�0�1�4��#'�#�:�� #�H�
��'*�8�}���,�.�'��{�6�E�2�h�>� -� 4� 4�X�a�[� A���F�A� �,�.�!����-�=��-�-�d�G�D�M�B�=�<)��=�)9�;��z�z�&�$�/���:��+�+�D�1�

� � �"��G )�A�",�.2�48�.9�#:�?@�A��A��%�=�(�*.�04�*5�6�;<�=��=��%�:�(�*2�3�89�:��:��%�G�(�*8�:>�*?�@�EF�G��G��%�D�(�*5�7;�*<�=�BC�D��D��%�A�0�C����4D�D�$�O�O�D�1�",�.2�48�.9�#:�?@�A�2��A��%�=�(�*.�04�*5�6�;<�=��=��N%�=�(�*.�04�*5�6�;<�=��=��2%�:�(�*2�3�89�:��:��
� � �"�sX�9R1�AM(�(R1�N�R1�0N(�5R1�8O�R1�)O%�$R1�% P�R1�
 Q�-C	R1�7R1�	Q4�#R1�R�(	N�1N�N�R1�	N%�N � N%�%R1�(	O�1N=�=O�R1�	O"�O�O"�"R1�%	P�.O=�=P�R1�	Q�8Q�R1�Q�R1�	Q1�Q,�,Q1�1R1�4	R�=R�R�R1�	R.�R)�)R.�.R1�1Sc� �d|vr|d}	|j|�}|S|j	dd�}|j	dd�}|j	dd�}|j	d	d�}|j	d
d�}	|st
j}
nt|�}
i}|	�|	|d
<d|vr|
||||dfi|��}|S|
|||fi|��}|S#t$rC}dt|�vr�|jd�|d<||d<|j|�}Yd}~|Sd}~wwxYw)z(Configure a formatter from a dictionary.rXz'format'r?rhNrBrCrDrEr!�validate)r�r�r
r,rGrrHr4)r�r��factoryr��terh�dfmtrC�cnamer!rQrYs            r'r�z$DictConfigurator.configure_formatter�sK���6�>��T�l�G�
7��.�.�v�6��L�
�5�*�*�X�t�,�C��:�:�i��.�D��J�J�w��,�E��J�J�w��-�E��z�z�*�d�3�H���%�%���U�O���F�
�#�%-��z�"��V�#��3��e�V�J�-?�J�6�J���
��3��e�6�v�6���
��K�	
7��S��W�,��
!'�
�
�8� 4��u�
�&��t���.�.�v�6��8�
��K	
7�s�C�	D
�
8D�D
c��d|vr|j|�}|S|jdd�}tj|�}|S)z%Configure a filter from a dictionary.rXr0rV)r�rGr�Filter)r�r�r�r0s    r'r�z!DictConfigurator.configure_filter�sE���6�>��*�*�6�2�F��
��:�:�f�b�)�D��^�^�D�)�F��
r;c���|D]J}	t|�stt|dd��r|}n|jd|}|j|��Ly#t$r}td|z�|�d}~wwxYw)z/Add filters to a filterer from a list of names.�filterNr�zUnable to add filter %r)r�r.r��	addFilterr�r�)r��filtererr�rS�filter_r$s      r'�add_filterszDictConfigurator.add_filters�s}���	G�A�
G��A�;�(�7�1�h��+E�"F��G�"�k�k�)�4�Q�7�G��"�"�7�+�
	G���
G� �!:�Q�!>�?�Q�F��
G�s�AA�	A.�A)�)A.c��d|vr|d}ntj�}|jdd�}d|vr|d}ntjj
}||g|jdg���d|i�}||�}||_|S)N�queue�respect_handler_levelF�listenerr&)r�QueuerGrr&�
QueueListenerr)r�rgrY�q�rhl�lklassrrs        r'�_configure_queue_handlerz)DictConfigurator._configure_queue_handler�s����f���w��A����
�A��j�j�0�%�8������J�'�F��%�%�3�3�F��!�T�f�j�j��R�8�T�PS�T����(��#����r;c��t|�}|jdd�}|r	|jd|}|jdd�}|jdd�}d|vr1|jd�}t|�s|j
|�}|}�n�|jd�}	t|	�r|	}
n|j
|	�}
t|
tjj�rYd	|vrU	|d	}|jd
|}t|tj�s|j|�td��||d	<�n�t|
tjj��rId
|vr�ddlm}
|d
}t|t$j"|
f�s�t|t&�r2|j
|�}t|�std|z��|�}nKt|t�r-d|vrtd|z��|j)t|��}ntd|z��||d
<d|v�r|d}t|t*�r2t|tjj,�s�td|z��t|t&�rS|j
|�}t|t*�r}t|tjj,�sYtd|z��t|t�r-d|vrtd|z��|j)t|��}ntd|z��t|�std|z��||d<d
|vr�g}	|d
D]^}|jd
|}t|tj�s|j|�td|z��|j/|��`	||d
<nt|
tjj0�rd|vr|j3|d�|d<n?t|
tjj4�rd|vr|j3|d�|d<t|
tjj�r!t7j8|j:|
�}n|
}|D�cic]}|dk7s�	t=|�s�|||��}}	|di|��}|r|j?|�|�$|jAtjB|��|r|jE||�|jdd�}|r%|jG�D]\}}tI|||��|S#t$r}t	d|z�|�d}~wwxYw#t$r}t	dz�|�d}~wwxYw#t$r}t	dz�|�d}~wwxYwcc}w#t$r5}dt'|�vr�|jd�|d<|di|��}Yd}~��&d}~wwxYw)z&Configure a handler from a dictionary.rUNr%zUnable to set formatter %rrZr�rXrEr[r&ztarget not configured yetzUnable to set target handler %rrr)rzInvalid queue specifier %rrzInvalid listener specifier %rz)Required handler %r is not configured yetz!Unable to set required handler %r�mailhost�addressr*z'stream'�stream�strmr�)%r�r,r�r�r�r�r�r_rr&r`r	�Handler�updater��QueueHandler�multiprocessing.queuesrrr
r�r�rra�SMTPHandlerr��
SysLogHandler�	functools�partialrr�r^r]r�rr�r�)r�r��config_copyrUr$rZr�rQrr
rg�tn�th�MPQueue�qspecr�lspecrrc�hnrir�rYr�rr�r0r�s                            r'r�z"DictConfigurator.configure_handler�s����6�l���J�J�{�D�1�	��
:� �K�K��5�i�@�	��
�
�7�D�)���*�*�Y��-���6�>��
�
�4� �A��A�;��L�L��O���G��J�J�w�'�E���������U�+���%��!1�!1�!?�!?�@��F�"�T���)�B����Z�0��4�B�%�b�'�/�/�:��
�
�k�2�'�(C�D�D�')�F�8�$��E�7�#3�#3�#@�#@�A��f�$�G�"�7�O�E�%�e�e�k�k�7�-C�D�%�e�S�1� $���U� 3�A�#+�A�;�&/�0L�u�0T�&U� U� !��A�'��t�4�#�5�0�&/�0L�u�0T�&U� U� $� 5� 5�d�5�k� B�A�"+�,H�5�,P�"Q�Q�*+��w����'�"�:�.�E�!�%��.�)�%��1A�1A�1O�1O�P�"+�,K�e�,S�"T�T�%�e�S�1�'+�|�|�E�':�H�)�(�D�9�$.�x��9I�9I�9W�9W�$X�&/�0O�RW�0W�&X� X�'��t�4�#�5�0�&/�0O�RW�0W�&X� X�'+�'<�'<�T�%�[�'I�H�"+�,K�e�,S�"T�T�'��1�"+�,K�e�,S�"T�T�-5��z�*���'��E�	Z�"(��"4�,�B� $���J� 7�� ;�A�#-�a����#A� &�
�
�k� :�&/�1H�JL�1M�'N�!N�!�L�L��O�
,�*/�F�:�&��E�7�#3�#3�#?�#?�@��f�$�%)�]�]�6�*�3E�%F��z�"��E�7�#3�#3�#A�#A�B��V�#�$(�M�M�&��2C�$D��y�!��%��!1�!1�!>�!>�?�#�+�+�D�,I�,I�5�Q����(.�P�1�1��8��A��!�V�A�Y�,�P��P�
	'��&�v�&�F�����	�*����O�O�G�/�/��6�7�����V�W�-��
�
�3��%���$�{�{�}�
-���e����e�,�
-��
��c�
:� �"&�(1�"2�3�89�:��
:��4!�T�$�%F��%K�L�RS�S��T��h%�Z�(�)L�r�)Q�R�XY�Y��Z��Q���	'���R��(��
$�Z�Z��1�F�6�N��&�v�&�F��	'�ss�T#�%AU�:A&U#�1
V�<V�V�V�#	U�,T;�;U�	U �U�U �#	V�,U;�;V�	W�*W�Wc��|D]$}	|j|jd|��&y#t$r}td|z�|�d}~wwxYw)z.Add handlers to a logger from a list of names.r&zUnable to add handler %rN)r�r�r�r�)r�rwr&rir$s     r'�add_handlerszDictConfigurator.add_handlersfs\���	H�A�
H��!�!�$�+�+�j�"9�!�"<�=�	H���
H� �!;�a�!?�@�a�G��
H�s�!+�	A�A�Ac�^�|jdd�}|�$|jtj|��|ss|jddD]}|j|��|jdd�}|r|j
||�|jdd�}|r|j||�yyy)zU
        Perform configuration which is common to root and non-root loggers.
        rZNr&r�)rGr]rr�r&r�r2r)r�rwr�r�rZrir&r�s        r'�common_logger_configz%DictConfigurator.common_logger_configns����
�
�7�D�)�����O�O�G�/�/��6�7���_�_�Q�'�
(���$�$�Q�'�
(��z�z�*�d�3�H���!�!�&�(�3��j�j��D�1�G��� � ���1��r;c��tj|�}|j|||�d|_|j	dd�}|�||_yy)z.Configure a non-root logger from a dictionary.FrqN)rr�r4rrrGrq)r�r0r�r�rwrqs      r'r�z!DictConfigurator.configure_logger�sN���"�"�4�(���!�!�&�&�+�>�����J�J�{�D�1�	�� �(�F��!r;c�R�tj�}|j|||�y)z*Configure a root logger from a dictionary.N)rr�r4)r�r�r�rls    r'r�zDictConfigurator.configure_root�s"��� � �"���!�!�$���<r;N)F)r�r�r�r�rr�r�rrr�r2r4r�r�r�r;r'r�r��s@���
\#�|+�Z�
G�
�x�tH�2�$)�=r;r�c�6�t|�j�y)z%Configure logging using a dictionary.N)�dictConfigClassr)r�s r'�
dictConfigr9�s���F��%�%�'r;c���Gd�dt�}Gd�dt�}G�fd�dtj���||||�S)au
    Start up a socket server on the specified port, and listen for new
    configurations.

    These will be sent as a file suitable for processing by fileConfig().
    Returns a Thread object on which you can call start() to start the server,
    and which you can join() when appropriate. To stop the server, call
    stopListening().

    Use the ``verify`` argument to verify any bytes received across the wire
    from a client. If specified, it should be a callable which receives a
    single argument - the bytes of configuration data received across the
    network - and it should return either ``None``, to indicate that the
    passed in bytes could not be verified and should be discarded, or a
    byte string which is then passed to the configuration machinery as
    normal. Note that you can return transformed bytes, e.g. by decrypting
    the bytes passed in.
    c��eZdZdZd�Zy)�#listen.<locals>.ConfigStreamHandlerz�
        Handler for a logging configuration request.

        It expects a completely new logging configuration and uses fileConfig
        to install it.
        c��	|j}|jd�}t|�dk(�r$tjd|�d}|jj|�}t|�|kr/||j|t|�z
�z}t|�|kr�/|j
j�|j
j
|�}|�D|jd�}	ddl}|j|�}t|t�sJ�t|�|j
j&r%|j
j&j)�yyy#t$rHtj|�}	t!|�n##t$rt#j$�YnwxYwY��wxYw#t*$r}|j,t.k7r�Yd}~yd}~wwxYw)z�
            Handle a request.

            Each request is expected to be a 4-byte length, packed using
            struct.pack(">L", n), followed by the config file.
            Uses fileConfig() to do the grunt work.
            �z>LrNzutf-8)�
connection�recvrF�struct�unpack�server�verify�decode�json�loadsr	r�r9r�r�StringIOr(�	traceback�	print_exc�ready�set�OSError�errno�RESET_ERROR)r��conn�chunk�slenrFr��filer$s        r'�handlez*listen.<locals>.ConfigStreamHandler.handle�s���
������	�	�!����u�:��?�!�=�=��u�5�a�8�D� �O�O�0�0��6�E��e�*�t�+� %��	�	�$��U��2C�(D� D���e�*�t�+��{�{�)�)�5� $��� 2� 2�5� 9���(� %���W� 5��6�'�#�z�z�%�0�A�#-�a��#6�6�#6�&�q�M��{�{�(�(����)�)�-�-�/�)�-#�� )�6�$&�;�;�u�#5�D�6� *�4� 0��#,�6� )� 3� 3� 5�6��
6���
��7�7�k�)��*��
�sg�BF'�AF'�$2E�:F'�F$�2E>�=F$�>F�F$�F�F$�!F'�#F$�$F'�'	G�0G	�	GN)r�r�r�r�rTr�r;r'�ConfigStreamHandlerr<�s��	�%	r;rUc�,�eZdZdZdZdedddfd�Zd�Zy)�$listen.<locals>.ConfigSocketReceiverzD
        A simple TCP socket-based logging config receiver.
        r}�	localhostNc��tj|||f|�tj�d|_tj
�d|_||_||_y)Nrr})	rr�rr�abortr�timeoutrKrD)r��host�portrrKrDs      r'r�z-listen.<locals>.ConfigSocketReceiver.__init__�sL���'�'��t�T�l�G�D�� � �"��D�J�� � �"��D�L��D�J� �D�Kr;c�<�ddl}d}|s�|j|jj�ggg|j�\}}}|r|j	�tj�|j}tj�|s��|j�y)Nr)
�select�socket�filenor[�handle_requestrrrZr�server_close)r�r_rZ�rd�wr�exs      r'�serve_until_stoppedz8listen.<locals>.ConfigSocketReceiver.serve_until_stopped�s�����E��#�]�]�D�K�K�,>�,>�,@�+A�+-�r�+/�<�<�9�
��B����'�'�)��$�$�&��
�
���$�$�&��
���r;)r�r�r�r��allow_reuse_address�DEFAULT_LOGGING_CONFIG_PORTr�rgr�r;r'�ConfigSocketReceiverrW�s&��	� �� +�2M�!��d�	!�	 r;rjc�(���eZdZ��fd�Zd�Z�xZS)�listen.<locals>.Serverc���t�|��||_||_||_||_t
j�|_yr6)	�superr��rcvr�hdlrr]rD�	threading�EventrK)r�rorpr]rD�Server�	__class__s     ��r'r�zlisten.<locals>.Server.__init__�s:����&�$�(�*��D�I��D�I��D�I� �D�K�"���*�D�Jr;c�l�|j|j|j|j|j��}|jdk(r|j
d|_|jj
�tj�|a	tj�|j�y)N)r]rrKrDrr})ror]rprKrD�server_addressrLrr�	_listenerrrg)r�rCs  r'�runzlisten.<locals>.Server.runs����Y�Y�D�I�I�t�y�y�%)�Z�Z�&*�k�k��3�F��y�y�A�~�"�1�1�!�4��	��J�J�N�N��� � �"��I�� � �"��&�&�(r;)r�r�r�r�rx�
__classcell__)rtrss@�r'rsrl�s
���	+�	)r;rs)rrrq�Thread)r]rDrUrjrss    @r'�listenr{�sE���(,�2�,�\ �1� �>)��!�!�)�.�&�(;�T�6�J�Jr;c��tj�	tr
dt_datj�y#tj�wxYw)zN
    Stop the listening server which was created with a call to listen().
    r}N)rrrwrZrr�r;r'�
stopListeningr}s=��
�������I�O��I����������s	�>�A)NTN)-r�rNr(rr�logging.handlersrrr�rArqrI�socketserverrrri�
ECONNRESETrOrwr(r4r:rrrxrrr��Ir�r��objectr�r�r�r~r�r�r�r�r�r8r9r{r}r�r;r'�<module>r�s��"�
��	���	��	�
���A�#������
�	�)�X�!��:$�L/�,TH�n ��R�Z�Z�,�b�d�d�
3�
���f��B
@�T�?�
@�#�T�?�#�@�e�_�@�A�v�A�FU=�'�U=�n#��(�
,�D�xK�tr;
¿Qué es la limpieza dental de perros? - Clínica veterinaria


Es la eliminación del sarro y la placa adherida a la superficie de los dientes mediante un equipo de ultrasonidos que garantiza la integridad de las piezas dentales a la vez que elimina en profundidad cualquier resto de suciedad.

A continuación se procede al pulido de los dientes mediante una fresa especial que elimina la placa bacteriana y devuelve a los dientes el aspecto sano que deben tener.

Una vez terminado todo el proceso, se mantiene al perro en observación hasta que se despierta de la anestesia, bajo la atenta supervisión de un veterinario.

¿Cada cuánto tiempo tengo que hacerle una limpieza dental a mi perro?

A partir de cierta edad, los perros pueden necesitar una limpieza dental anual o bianual. Depende de cada caso. En líneas generales, puede decirse que los perros de razas pequeñas suelen acumular más sarro y suelen necesitar una atención mayor en cuanto a higiene dental.


Riesgos de una mala higiene


Los riesgos más evidentes de una mala higiene dental en los perros son los siguientes:

  • Cuando la acumulación de sarro no se trata, se puede producir una inflamación y retracción de las encías que puede descalzar el diente y provocar caídas.
  • Mal aliento (halitosis).
  • Sarro perros
  • Puede ir a más
  • Las bacterias de la placa pueden trasladarse a través del torrente circulatorio a órganos vitales como el corazón ocasionando problemas de endocarditis en las válvulas. Las bacterias pueden incluso acantonarse en huesos (La osteomielitis es la infección ósea, tanto cortical como medular) provocando mucho dolor y una artritis séptica).

¿Cómo se forma el sarro?

El sarro es la calcificación de la placa dental. Los restos de alimentos, junto con las bacterias presentes en la boca, van a formar la placa bacteriana o placa dental. Si la placa no se retira, al mezclarse con la saliva y los minerales presentes en ella, reaccionará formando una costra. La placa se calcifica y se forma el sarro.

El sarro, cuando se forma, es de color blanquecino pero a medida que pasa el tiempo se va poniendo amarillo y luego marrón.

Síntomas de una pobre higiene dental
La señal más obvia de una mala salud dental canina es el mal aliento.

Sin embargo, a veces no es tan fácil de detectar
Y hay perros que no se dejan abrir la boca por su dueño. Por ejemplo…

Recientemente nos trajeron a la clínica a un perro que parpadeaba de un ojo y decía su dueño que le picaba un lado de la cara. Tenía molestias y dificultad para comer, lo que había llevado a sus dueños a comprarle comida blanda (que suele ser un poco más cara y llevar más contenido en grasa) durante medio año. Después de una exploración oftalmológica, nos dimos cuenta de que el ojo tenía una úlcera en la córnea probablemente de rascarse . Además, el canto lateral del ojo estaba inflamado. Tenía lo que en humanos llamamos flemón pero como era un perro de pelo largo, no se le notaba a simple vista. Al abrirle la boca nos llamó la atención el ver una muela llena de sarro. Le realizamos una radiografía y encontramos una fístula que llegaba hasta la parte inferior del ojo.

Le tuvimos que extraer la muela. Tras esto, el ojo se curó completamente con unos colirios y una lentilla protectora de úlcera. Afortunadamente, la úlcera no profundizó y no perforó el ojo. Ahora el perro come perfectamente a pesar de haber perdido una muela.

¿Cómo mantener la higiene dental de tu perro?
Hay varias maneras de prevenir problemas derivados de la salud dental de tu perro.

Limpiezas de dientes en casa
Es recomendable limpiar los dientes de tu perro semanal o diariamente si se puede. Existe una gran variedad de productos que se pueden utilizar:

Pastas de dientes.
Cepillos de dientes o dedales para el dedo índice, que hacen más fácil la limpieza.
Colutorios para echar en agua de bebida o directamente sobre el diente en líquido o en spray.

En la Clínica Tus Veterinarios enseñamos a nuestros clientes a tomar el hábito de limpiar los dientes de sus perros desde que son cachorros. Esto responde a nuestro compromiso con la prevención de enfermedades caninas.

Hoy en día tenemos muchos clientes que limpian los dientes todos los días a su mascota, y como resultado, se ahorran el dinero de hacer limpiezas dentales profesionales y consiguen una mejor salud de su perro.


Limpiezas dentales profesionales de perros y gatos

Recomendamos hacer una limpieza dental especializada anualmente. La realizamos con un aparato de ultrasonidos que utiliza agua para quitar el sarro. Después, procedemos a pulir los dientes con un cepillo de alta velocidad y una pasta especial. Hacemos esto para proteger el esmalte.

La frecuencia de limpiezas dentales necesaria varía mucho entre razas. En general, las razas grandes tienen buena calidad de esmalte, por lo que no necesitan hacerlo tan a menudo e incluso pueden pasarse la vida sin requerir una limpieza. Sin embargo, razas pequeñas como el Yorkshire o el Maltés, deben hacérselas todos los años desde cachorros si se quiere conservar sus piezas dentales.

Otro factor fundamental es la calidad del pienso. Algunas marcas han diseñado croquetas que limpian la superficie del diente y de la muela al masticarse.

Ultrasonido para perros

¿Se necesita anestesia para las limpiezas dentales de perros y gatos?

La limpieza dental en perros no es una técnica que pueda practicarse sin anestesia general , aunque hay veces que los propietarios no quieren anestesiar y si tiene poco sarro y el perro es muy bueno se puede intentar…… , pero no se va a poder pulir ni acceder a todas la zona de la boca …. Además los limpiadores dentales van a irrigar agua y hay riesgo de aspiración a vías respiratorias si no se realiza una anestesia correcta con intubación traqueal . En resumen , sin anestesia no se va hacer una correcta limpieza dental.

Tampoco sirve la sedación ya que necesitamos que el animal esté totalmente quieto, y el veterinario tenga un acceso completo a todas sus piezas dentales y encías.

Alimentos para la limpieza dental

Hay que tener cierto cuidado a la hora de comprar determinados alimentos porque no todos son saludables. Algunos tienen demasiado contenido graso, que en exceso puede causar problemas cardiovasculares y obesidad.

Los mejores alimentos para los dientes son aquellos que están elaborados por empresas farmacéuticas y llevan componentes químicos con tratamientos específicos para el diente del perro. Esto implica no solo limpieza a través de la acción mecánica de morder sino también un tratamiento antibacteriano para prevenir el sarro.

Conclusión

Si eres como la mayoría de dueños, por falta de tiempo , es probable que no estés prestando la suficiente atención a la limpieza dental de tu perro. Por eso te animamos a que comiences a limpiar los dientes de tu perro y consideres atender a su higiene bucal con frecuencia.

Estas simples medidas pueden conllevar a que tu perro tenga una vida más larga y mucho más saludable.

Si te resulta imposible introducir un cepillo de dientes a tu perro en la boca, pásate con él por clínica Tus Veterinarios y te explicamos cómo hacerlo.

Necesitas hacer una limpieza dental profesional a tu mascota?
Llámanos al 622575274 o contacta con nosotros

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

¡Hola!