# Logging

The logging module is inspired by database/sql. It supports file, console, net and smtp as destination providers by default. It is installed like this:

go get github.com/beego/beego/v2/core/logs

# Basic Usage

# General Usage

Import package:

import (
	"github.com/beego/beego/v2/core/logs"
)

Initialize log variable (10000 is the cache size):

log := logs.NewLogger(10000)

Then add the output provider (it supports outputting to multiple providers at the same time). The first parameter is the provider name (console, file,multifile, conn , smtp or es).

log.SetLogger("console")

The second parameter is a provider-specific configuration string (see below for details).

logs.SetLogger(logs.AdapterFile,`{"filename":"project.log","level":7,"maxlines":0,"maxsize":0,"daily":true,"maxdays":10,"color":true}`)
1

Then we can use it in our code:

package main

import (
	"github.com/beego/beego/v2/core/logs"
)

func main() {    
	//an official log.Logger
	l := logs.GetLogger()
	l.Println("this is a message of http")
	//an official log.Logger with prefix ORM
	logs.GetLogger("ORM").Println("this is a message of orm")

    logs.Debug("my book is bought in the year of ", 2016)
 	logs.Info("this %s cat is %v years old", "yellow", 3)
 	logs.Warn("json is a type of kv like", map[string]int{"key": 2016})
   	logs.Error(1024, "is a very", "good game")
   	logs.Critical("oh,crash")
}

# Another Way

beego/logs supports to declare a single logger to use:

package main

import (
  "github.com/beego/beego/v2/core/logs"
)

func main() {
  log := logs.NewLogger()
  log.SetLogger(logs.AdapterConsole)
  log.Debug("this is a debug message")
}

# Logging caller information (file name & line number)

The module can be configured to include the file & line number of the log calls in the logging output. This functionality is disabled by default, but can be enabled using the following code:

logs.EnableFuncCallDepth(true)

Use true to turn file & line number logging on, and false to turn it off. Default is false.

If your application encapsulates the call to the log methods, you may need use SetLogFuncCallDepth to set the number of stack frames to be skipped before the caller information is retrieved. The default is 2.

logs.SetLogFuncCallDepth(3)

# Logging asynchronously

You can set logger to asynchronous logging to improve performance:

logs.Async()

Add a parameter to set the length of buffer channel:

logs.Async(1e3)
1

# Provider configuration

Each provider supports a set of configuration options:

  • Console

User can set output level or use default. Uses os.Stdout by default.

logs.SetLogger(logs.AdapterConsole, `{"level":1}`)
1
  • File

E.g.:

logs.SetLogger(logs.AdapterFile, `{"filename":"test.log"}`)
1

Parameters:

  • filename: Save to filename.
  • maxlines: Maximum lines for each log file, 1000000 by default.
  • maxsize: Maximum size of each log file, 1 << 28 or 256M by default.
  • daily: If log rotates by day, true by default.
  • maxdays: Maximum number of days log files will be kept, 7 by default.
  • rotate: Enable logrotate or not, true by default.
  • level: Log level, Trace by default.
  • perm: Log file permission.
  • Multifile

E.g.:

logs.SetLogger(logs.AdapterMultiFile, `{"filename":"test.log","separate":["emergency", "alert", "critical", "error", "warning", "notice", "info", "debug"]}`)
1

Parameters:

  • filename: Save to filename.
  • maxlines: Maximum lines for each log file, 1000000 by default.
  • maxsize: Maximum size of each log file, 1 << 28 or 256M by default.
  • daily: If log rotates by day, true by default.
  • maxdays: Maximum number of days log files will be kept, 7 by default.
  • rotate: Enable logrotate or not, true by default.
  • level: Log level, Trace by default.
  • perm: Log file permission.
  • separate: Log file will separate to test.error.log/test.debug.log as the log level set in the json array.
  • Conn

Log to net connection:

logs.SetLogger(logs.AdapterConn, `{"net":"tcp","addr":":7020"}`)
1

Parameters:

  • reconnectOnMsg: If true: reopen and close connection every time a message is sent. False by default.
  • reconnect: If true: auto connect. False by default.
  • net: connection type: tcp, unix or udp.
  • addr: net connection address.
  • level: Log level, Trace by default.
  • SMTP

Log to email:

logs.SetLogger(logs.AdapterMail, `{"username":"beegotest@gmail.com","password":"xxxxxxxx","host":"smtp.gmail.com:587","sendTos":["xiemengjun@gmail.com"]}`)
1

Parameters:

  • username: smtp username.
  • password: smtp password.
  • host: SMTP server host.
  • sendTos: email addresses to which the logs will be sent.
  • subject: email subject, Diagnostic message from server by default.
  • level: Log level, Trace by default.
  • ElasticSearch

Log to ElasticSearch:

logs.SetLogger(logs.AdapterEs, `{"dsn":"http://localhost:9200/","level":1}`)
1
  • JianLiao

Log to JianLiao

logs.SetLogger(logs.AdapterJianLiao, `{"authorname":"xxx","title":"beego", "webhookurl":"https://jianliao.com/xxx", "redirecturl":"https://jianliao.com/xxx","imageurl":"https://jianliao.com/xxx","level":1}`)
1
  • Slack

Log to Slack

logs.SetLogger(logs.AdapterSlack, `{"webhookurl":"https://slack.com/xxx","level":1}`)
1

# Custom format logging

A new feature of the 2.0 release of beego is the ability to have custom formatting applied to your logs before being sent to your preferred adapter. Here is an example of it in use:

package main

import (
	"fmt"

	beego "github.com/beego/beego/v2/pkg"
	"github.com/beego/beego/v2/pkg/logs"
)

type MainController struct {
	beego.Controller
}


func customFormatter(lm *logs.LogMsg) string {
	return fmt.Sprintf("[CUSTOM FILE LOGGING] %s", lm.Msg)
}

func GlobalFormatter(lm *logs.LogMsg) string {
	return fmt.Sprintf("[GLOBAL] %s", lm.Msg)
}

func main() {

	beego.BConfig.Log.AccessLogs = true

	// GlobalFormatter only overrides default log adapters. Hierarchy is like this:
	// adapter specific formatter > global formatter > default formatter
	logs.SetGlobalFormatter(GlobalFormatter)

	logs.SetLogger("console", "")

	logs.SetLoggerWithOpts("file", []string{`{"filename":"test.json"}`}, customFormatter)

	beego.Run()
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

# Global formatter

With the global formatter you can override default logging formatters. This means that setting a global formatter will override any logs.SetLogger() adapters, but will not override logs.SetLoggerWithOpts() adapters. Default logging formatters are any adapters set using the following syntax:

logs.SetLogger("adapterName", '{"key":"value"}')
1

# Adapter Specific formatters

Adapter specific formatters can be set and will override any default or global formatter that has been set for a given adapter. Adapter specific logging formatters can be set using the following syntax:

logs.SetLoggerWithOpts("adapterName", []string{'{"key":"value"}'}, utils.KV{Key:"formatter", Value: formatterFunc})
1