int TestNormal(int a, int b)
        {
            using var methodLogScope = _loggingExt
                                       .MethodLogScope()
                                       .WithArguments(a, b)
                                       .WithAdditionalValue("basketGuid", "af33rrr32-32r23-323232t");

            var sum = a + b;

            return(methodLogScope.WithReturn(sum));
        }