App
app
logger
Application-wide logging system for Mango Tango CLI.
Provides structured JSON logging with: - Console output (ERROR and CRITICAL levels only) to stderr - File output (INFO and above) with automatic rotation - Configurable log levels via CLI flag
ContextEnrichmentFilter
Bases: Filter
Filter that enriches log records with contextual information.
Adds: - process_id: Current process ID - thread_id: Current thread ID - app_version: Application version (if available)
Source code in app/logger.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
get_logger(name)
Get a logger instance for the specified module.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
str
|
Logger name (typically name) |
required |
Returns:
Type | Description |
---|---|
Logger
|
Configured logger instance |
Source code in app/logger.py
137 138 139 140 141 142 143 144 145 146 147 |
|
setup_logging(log_file_path, level=logging.INFO, app_version='unknown')
Configure application-wide logging with structured JSON output.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Path
|
Path to the log file |
required |
|
int
|
Minimum logging level (default: logging.INFO) |
INFO
|
|
str
|
Application version to include in logs |
'unknown'
|
Source code in app/logger.py
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 |
|
test_logger
Unit tests for the logging configuration module.
TestContextEnrichment
Test cases for context enrichment features.
Source code in app/test_logger.py
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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|
test_cli_level_controls_file_handler()
Test that CLI log level properly controls file handler level.
Source code in app/test_logger.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
|
test_context_filter_adds_metadata()
Test that context filter adds process_id, thread_id, and app_version.
Source code in app/test_logger.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
|
test_global_exception_handler_setup()
Test that global exception handler is installed.
Source code in app/test_logger.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|
test_third_party_logger_levels()
Test that third-party loggers are set to WARNING level.
Source code in app/test_logger.py
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
TestGetLogger
Test cases for the get_logger function.
Source code in app/test_logger.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
|
test_get_logger_returns_logger_instance()
Test that get_logger returns a logging.Logger instance.
Source code in app/test_logger.py
188 189 190 191 |
|
test_get_logger_with_different_names()
Test that get_logger returns different loggers for different names.
Source code in app/test_logger.py
193 194 195 196 197 198 199 200 |
|
test_get_logger_with_same_name_returns_same_instance()
Test that get_logger returns the same instance for the same name.
Source code in app/test_logger.py
202 203 204 205 206 207 |
|
TestIntegration
Integration tests for the logging system.
Source code in app/test_logger.py
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 |
|
test_full_logging_workflow()
Test the complete logging workflow.
Source code in app/test_logger.py
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 |
|
TestSetupLogging
Test cases for the setup_logging function.
Source code in app/test_logger.py
17 18 19 20 21 22 23 24 25 26 27 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 170 171 172 173 174 175 176 177 178 179 180 181 182 |
|
test_console_handler_only_shows_errors()
Test that console handler only shows ERROR and CRITICAL messages.
Source code in app/test_logger.py
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 |
|
test_file_handler_logs_info_and_above()
Test that file handler logs INFO and above messages when set to INFO level.
Source code in app/test_logger.py
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 |
|
test_log_format_is_json()
Test that log messages are formatted as JSON.
Source code in app/test_logger.py
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 182 |
|
test_setup_logging_configures_handlers()
Test that setup_logging configures both console and file handlers.
Source code in app/test_logger.py
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 |
|
test_setup_logging_configures_root_logger()
Test that setup_logging configures the root logger with correct level.
Source code in app/test_logger.py
33 34 35 36 37 38 39 40 41 |
|
test_setup_logging_creates_log_directory()
Test that setup_logging creates the log directory if it doesn't exist.
Source code in app/test_logger.py
20 21 22 23 24 25 26 27 28 29 30 31 |
|