Logging
Custom logging configuration for pyfabricops.
T # Colored symbols for each log level SYMBOLS = { 'DEBUG': ESC + '36m○[0m', # Cyan circle 'INFO': ESC + '34mi[0m', # Blue "i" 'SUCCESS': ESC + '32m✓[0m', # Green check 'WARNING': ESC + '33m△[0m', # Yellow triangle 'ERROR': ESC + '31m✕[0m', # Red X 'CRITICAL': ESC + '41;97m⊗[0m', # Red background + bright white circled times }e provides a centralized logging system with customizable formatters, handlers, and configuration options for better debugging and monitoring.
PyFabricOpsFilter
Bases: Filter
Custom filter to control which log records are processed.
Source code in src/pyfabricops/utils/logging.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
__init__(include_external=False)
Initialize the filter.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_external
|
bool
|
Whether to include logs from external libraries |
False
|
Source code in src/pyfabricops/utils/logging.py
187 188 189 190 191 192 193 194 195 | |
filter(record)
Filter log records based on configuration.
Source code in src/pyfabricops/utils/logging.py
197 198 199 200 201 202 203 204 | |
PyFabricOpsFormatter
Bases: Formatter
Custom formatter for pyfabricops with colored output and structured format.
Source code in src/pyfabricops/utils/logging.py
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 170 171 172 173 174 175 176 177 178 179 180 181 | |
__init__(include_colors=True, include_module=True, ultra_minimal=False, include_symbols=True)
Initialize the custom formatter.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_colors
|
bool
|
Whether to include colors in console output |
True
|
include_module
|
bool
|
Whether to include module name in log format |
True
|
ultra_minimal
|
bool
|
Whether to use ultra minimal format (just message) |
False
|
include_symbols
|
bool
|
Whether to include colored symbols before messages |
True
|
Source code in src/pyfabricops/utils/logging.py
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 | |
format(record)
Format the log record with optional colors and symbols.
Source code in src/pyfabricops/utils/logging.py
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 170 171 172 173 174 175 176 177 178 179 180 181 | |
disable_logging()
Disable all logging output.
Source code in src/pyfabricops/utils/logging.py
354 355 356 | |
enable_debug_mode(include_external=True)
Quick function to enable debug logging with detailed output.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_external
|
bool
|
Whether to include logs from external libraries |
True
|
Source code in src/pyfabricops/utils/logging.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 | |
get_logger(name)
Get a logger instance for a specific module.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The logger name (usually name) |
required |
Returns:
| Type | Description |
|---|---|
Logger
|
logging.Logger: Configured logger instance |
Source code in src/pyfabricops/utils/logging.py
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
reset_logging()
Reset logging to default configuration.
Source code in src/pyfabricops/utils/logging.py
359 360 361 362 363 364 365 366 367 368 369 | |
setup_logging(level=logging.INFO, format_style='standard', include_colors=True, include_module=True, include_symbols=True, log_file=None, include_external=False, max_file_size=10 * 1024 * 1024, backup_count=5)
Configure logging for pyfabricops.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
level
|
Union[str, int]
|
Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL or numeric) |
INFO
|
format_style
|
Literal['standard', 'minimal', 'detailed']
|
Format style ('standard', 'minimal', 'detailed') - 'minimal': Only message (ultra-minimal) - 'standard': Timestamp, level, and message - 'detailed': Timestamp, module, level, and message |
'standard'
|
include_colors
|
bool
|
Whether to use colored output in console |
True
|
include_module
|
bool
|
Whether to include module names in logs |
True
|
include_symbols
|
bool
|
Whether to include colored symbols before messages (enabled by default) |
True
|
log_file
|
Optional[Union[str, Path]]
|
Optional file path to write logs to |
None
|
include_external
|
bool
|
Whether to include logs from external libraries |
False
|
max_file_size
|
int
|
Maximum size of log file before rotation (bytes) |
10 * 1024 * 1024
|
backup_count
|
int
|
Number of backup files to keep when rotating |
5
|
Source code in src/pyfabricops/utils/logging.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
success(self, message, *args, **kwargs)
Log a message with severity 'SUCCESS'.
Source code in src/pyfabricops/utils/logging.py
39 40 41 42 | |