Skip to content

hakkasuru/slog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slog

Simple Go Slack Logger

Installation

go get -u github.com/hakkasuru/slog

Quick Start

config := slog.NewConfig(
    "<webhook url>",
    "ExampleApplication",
    "<!here>",
)
logger := slog.NewSlackLogger(config)
logger.Info(fmt.Sprintf("API returned http status %d", 500))

demo example