glide_sync.logger
Logger
A singleton class that allows logging which is consistent with logs from the internal GLIDE core. The logger can be set up in 2 ways - 1. By calling Logger.init, which configures the logger only if it wasn't previously configured. 2. By calling Logger.set_logger_config, which replaces the existing configuration, and means that new logs will not be saved with the logs that were sent before the call. If none of these functions are called, the first log attempt will initialize a new logger with default configuration.
Source code in doc-gen/valkey-glide/python/glide-sync/glide_sync/logger.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |
init(level=None, file_name=None)
classmethod
Initialize a logger if it wasn't initialized before - this method is meant to be used when there is no intention to
replace an existing logger. Otherwise, use set_logger_config for overriding the existing logger configs.
The logger will filter all logs with a level lower than the given level.
If given a file_name argument, will write the logs to files postfixed with file_name. If file_name isn't provided,
the logs will be written to the console.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
level
|
Optional[Level]
|
Set the logger level to one of [ERROR, WARN, INFO, DEBUG, TRACE, OFF]. If log level isn't provided, the logger will be configured with default configuration. To turn off logging completely, set the level to Level.OFF. |
None
|
file_name
|
Optional[str]
|
If provided the target of the logs will be the file mentioned. Otherwise, logs will be printed to the console. |
None
|
Source code in doc-gen/valkey-glide/python/glide-sync/glide_sync/logger.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | |
log(log_level, log_identifier, message, err=None)
classmethod
Logs the provided message if the provided log level is lower then the logger level.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
log_level
|
Level
|
The log level of the provided message. |
required |
log_identifier
|
str
|
The log identifier should give the log a context. |
required |
message
|
str
|
The message to log. |
required |
err
|
Optional[Exception]
|
The exception or error to log. |
None
|
Source code in doc-gen/valkey-glide/python/glide-sync/glide_sync/logger.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | |
set_logger_config(level=None, file_name=None)
classmethod
Creates a new logger instance and configure it with the provided log level and file name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
level
|
Optional[Level]
|
Set the logger level to one of [ERROR, WARN, INFO, DEBUG, TRACE, OFF]. If log level isn't provided, the logger will be configured with default configuration. To turn off logging completely, set the level to OFF. |
None
|
file_name
|
Optional[str]
|
If provided the target of the logs will be the file mentioned. Otherwise, logs will be printed to the console. |
None
|
Source code in doc-gen/valkey-glide/python/glide-sync/glide_sync/logger.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |