Giter VIP home page Giter VIP logo

Comments (4)

hhniao avatar hhniao commented on May 29, 2024 1

@jochumdev
thanks very much. got it.

from go-micro.

jochumdev avatar jochumdev commented on May 29, 2024
go run main.go >> service.log >2&1

Note the 2>&1 which redirects stderr to stdout.

from go-micro.

hhniao avatar hhniao commented on May 29, 2024

@jochumdev
thanks for your reply.
it is work, when i run this command in windows cmd.
but it is not work, when i create windows service.

sc create micro-user binPath= "micro.exe --module=user --path=${ROOT_PATH} >> user.log" type= own
sc start  micro-user

// it is work, if not redirect output
sc create micro-user binPath= "micro.exe --module=user --path=${ROOT_PATH}" type= own
sc start  micro-user

from go-micro.

jochumdev avatar jochumdev commented on May 29, 2024

hey @hhniao

windows services log to /dev/null for performance reasons as far i googled.

Here is how i did that with logrus:

import (
	microLogrus "github.com/go-micro/plugins/v4/logger/logrus"
	microLogger "go-micro.dev/v4/logger"

	"github.com/sirupsen/logrus"
)

// caller returns string presentation of log caller which is formatted as
// `/path/to/file.go:line_number`. e.g. `/internal/app/api.go:25`
func caller() func(*runtime.Frame) (function string, file string) {
	return func(f *runtime.Frame) (function string, file string) {
		return "", fmt.Sprintf("%s:%d", f.File, f.Line)
	}
}

func main() {
        // open the logfile.
        f, err := os.OpenFile("testlogrus.log", os.O_APPEND | os.O_CREATE | os.O_RDWR, 0600)
                if err != nil {
                fmt.Printf("error opening file: %v", err)
        }

        // don't forget to close it
        defer f.Close()

        logger = logrus.New()
	logger.Out = f
	logger.Level = logrus.TraceLevel

        // An expensive but usefull call for debugging.
	logger.SetReportCaller(true)

	logger.SetFormatter(&logrus.JSONFormatter{
		CallerPrettyfier: caller(),
		FieldMap: logrus.FieldMap{
			logrus.FieldKeyFile: "caller",
		},
	})

	// The important line here, this replaces the go-micro logger with logrus.
	microLogger.DefaultLogger = microLogrus.NewLogger(microLogrus.WithLogger(logger))
	
	// your code here ....
}

from go-micro.

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.