수색…


기본 인쇄

Go에는 일반적으로 사용되는 Print 및 그 변형을 사용하는 log 라는 기본 제공 로깅 라이브러리가 있습니다. 라이브러리를 가져 와서 기본 인쇄를 할 수 있습니다.

package main

import "log"

func main() {

    log.Println("Hello, world!")
    // Prints 'Hello, world!' on a single line

    log.Print("Hello, again! \n")
    // Prints 'Hello, again!' but doesn't break at the end without \n

    hello := "Hello, Stackers!"
    log.Printf("The type of hello is: %T \n", hello)
    // Allows you to use standard string formatting. Prints the type 'string' for %T
    // 'The type of hello is: string
}

파일에 로깅

io.Writer 인터페이스를 규정하는 것으로 로그 목적지를 지정할 수 있습니다. 이를 통해 우리는 파일에 로그인 할 수 있습니다 :

package main

import (
    "log"
    "os"
)

func main() {
    logfile, err := os.OpenFile("test.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
    if err != nil {
        log.Fatalln(err)
    }
    defer logfile.Close()

    log.SetOutput(logfile)
    log.Println("Log entry")
}

산출:

$ cat test.log
2016/07/26 07:29:05 Log entry

syslog에 로깅

다음과 같이 log/syslog 를 사용하여 syslog에 로그 할 수도 있습니다.

package main

import (
    "log"
    "log/syslog"
)

func main() {
    syslogger, err := syslog.New(syslog.LOG_INFO, "syslog_example")
    if err != nil {
        log.Fatalln(err)
    }

    log.SetOutput(syslogger)
    log.Println("Log entry")
}

실행 후 우리는 syslog에서 그 행을 볼 수 있습니다 :

Jul 26 07:35:21 localhost syslog_example[18358]: 2016/07/26 07:35:21 Log entry


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow