log property
Log
get
log
Logger for this request context.
When used with LogContext middleware, automatically includes
request-specific fields like request_id via Zone context.
Example:
ctx.log.info('Processing request');
ctx.log.debug('User authenticated', {'userId': user.id});
ctx.log.error('Failed to save', {'error': e.toString()}, e);
Implementation
zlogger.Log get log => zlogger.log;