# log **Repository Path**: zc310/log ## Basic Information - **Project Name**: log - **Description**: golang log - **Primary Language**: Go - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-07-29 - **Last Updated**: 2021-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://travis-ci.org/zc310/log.svg)](https://travis-ci.org/zc310/log) [![GoDoc](https://godoc.org/github.com/zc310/log?status.svg)](http://godoc.org/github.com/zc310/log) [![Go Report](https://goreportcard.com/badge/github.com/zc310/log)](https://goreportcard.com/report/github.com/zc310/log) # log golang log #### Example ```go package main import ( "github.com/zc310/log" ) func main() { log.SetPath("/tmp/") log.Info("a", 1, 2, []string{"a", "b", "c"}) } ```