Results 4 issues of yodew

when I use skywalking to collect logs, only default logs can be collected, no loguru logs, but use logging module, the logs can be collected. I need some suggests ,...

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...

```python from pypika.terms import Function from tortoise import Tortoise from tortoise.expressions import Aggregate class GroupConcatFunction(Function): def __init__(self, term, *default_values, **kwargs): super(GroupConcatFunction, self).__init__("GROUP_CONCAT", term, *default_values, **kwargs) class GroupConcat(Aggregate): database_func = GroupConcatFunction...