renaming from "package flog" to "package log"
parent
eba8823c9e
commit
a8569fedfb
15
README.md
15
README.md
|
@ -1,18 +1,11 @@
|
||||||
# go-flog
|
# go-log
|
||||||
|
|
||||||
A library that provides structured and formatted logging for the Go programming language.
|
A library that provides structured and formatted logging for the Go programming language.
|
||||||
|
|
||||||
|
(This package was originally named `flog`, but in version 2 was renamed to `log`.)
|
||||||
|
|
||||||
## Documention
|
## Documention
|
||||||
|
|
||||||
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-flog
|
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-log
|
||||||
|
|
||||||
[![GoDoc](https://godoc.org/github.com/reiver/go-flog?status.svg)](https://godoc.org/github.com/reiver/go-flog)
|
[![GoDoc](https://godoc.org/github.com/reiver/go-log?status.svg)](https://godoc.org/github.com/reiver/go-log)
|
||||||
|
|
||||||
|
|
||||||
## More Routers
|
|
||||||
|
|
||||||
In addition to the builtin routers that go-flog comes with, other external
|
|
||||||
routers are also available. These include:
|
|
||||||
|
|
||||||
* [go-slackchannelrouter](https://github.com/reiver/go-slackchannelrouter) Makes it so log messages get posted to a [Slack](https://slack.com/) channel.
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
func newContext(cascade ...interface{}) map[string]interface{} {
|
func newContext(cascade ...interface{}) map[string]interface{} {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
// NewCopyingRouter returns an initialized CopyingRouter.
|
// NewCopyingRouter returns an initialized CopyingRouter.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/reiver/go-dotquote"
|
"github.com/reiver/go-dotquote"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
2
doc.go
2
doc.go
|
@ -101,4 +101,4 @@ Makes it so log messages get posted to a Slack channel.
|
||||||
https://github.com/reiver/go-slackchannelrouter
|
https://github.com/reiver/go-slackchannelrouter
|
||||||
|
|
||||||
*/
|
*/
|
||||||
package flog
|
package log
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
// NewFilteringRouter returns an initialized FilteringRouter.
|
// NewFilteringRouter returns an initialized FilteringRouter.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
type Flogger interface {
|
type Flogger interface {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
type internalFlogger struct {
|
type internalFlogger struct {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
func (flogger *internalFlogger) With(cascade ...interface{}) Flogger {
|
func (flogger *internalFlogger) With(cascade ...interface{}) Flogger {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
func (receiver *internalLogger) MuteAlert() {
|
func (receiver *internalLogger) MuteAlert() {
|
||||||
receiver.mutedDebug = true
|
receiver.mutedDebug = true
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
func (receiver *internalLogger) UnmuteAlert() {
|
func (receiver *internalLogger) UnmuteAlert() {
|
||||||
receiver.mutedAlert = false
|
receiver.mutedAlert = false
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
type Logger interface {
|
type Logger interface {
|
||||||
Alert(...interface{}) error
|
Alert(...interface{}) error
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
// NewMappingRouter returns an initialized MappingRouter.
|
// NewMappingRouter returns an initialized MappingRouter.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
|
|
||||||
// NewNonBlockingRouter returns an initialized NonBlockingRouter.
|
// NewNonBlockingRouter returns an initialized NonBlockingRouter.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package flog
|
package log
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
Loading…
Reference in New Issue