Giter Site home page Giter Site logo

Comments (1)

dosubot avatar dosubot commented on May 28, 2024 2

🤖

你好 @kvii,我是 Dosu,一个可以帮助你解决bug,回答问题,甚至成为贡献者的机器人。在等待人类维护者回复的同时,我在这里为你提供帮助。

The issue you're experiencing might be due to the way the logger is set up in your test. The DefaultCaller function in Kratos logs the file and line number of the caller's caller. This means that when you call logger.Log, the caller is TestInfo, but the caller's caller is the testing framework itself, not your TestInfo function. This is why the caller path is not at the same level as helper.Log.

To reproduce this issue, you can create a helper function that calls logger.Log and call this helper function from TestInfo. Here's an example:

package log

import (
	"testing"
)

func TestInfo(_ *testing.T) {
	logger := DefaultLogger
	logger = With(logger, "ts", DefaultTimestamp)
	logger = With(logger, "caller", DefaultCaller)
	logHelper(logger)
}

func logHelper(logger Logger) {
	_ = logger.Log(LevelInfo, "key1", "value1")
}

In this example, DefaultCaller will log the file and line number of logHelper, not TestInfo. This is because logHelper is the caller of logger.Log, but TestInfo is the caller's caller.

I found two similar issues in the Kratos repository that have been solved:

  1. [BUG] keep kratos internal log caller depth same which was last updated on November 10, 2023
  2. [Bug] The caller depth of log.Filter should be the same as log.logger. which was last updated on August 16, 2023

These issues might provide some insight into your problem.

As for the exact functionality of the logging.Server function in the Kratos framework, I wasn't able to find a specific answer within the repository. It might be beneficial to look into the Kratos documentation or source code for more information.

I hope this helps! If you have any more questions or need further clarification, feel free to ask.

Best,
Dosu

Sources


This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.