Child loggers in Hive Logger allow you to create new logger instances that inherit configuration
(such as log level, writers, and attributes) from their parent logger. This is useful for
associating contextual information (like request IDs or component names) with all logs from a
specific part of your application.
When you create a child logger using the child method, you can:
Add a prefix to all log messages from the child logger.
Add attributes that will be included in every log entry from the child logger.
Inherit the log level and writers from the parent logger, unless explicitly changed on the child.
This makes it easy to organize and structure logs in complex applications, ensuring that related
logs carry consistent context.