Skip to content

Commit cf63b41

Browse files
committed
improve and readme update for v0.5 release
1 parent 5faa25f commit cf63b41

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# log - aah framework
22
[![Build Status](https://travis-ci.org/go-aah/log.svg?branch=master)](https://travis-ci.org/go-aah/log) [![codecov](https://codecov.io/gh/go-aah/log/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/log/branch/master) [![Go Report Card](https://goreportcard.com/badge/aahframework.org/log.v0)](https://goreportcard.com/report/aahframework.org/log.v0)
3-
[![Version](https://img.shields.io/badge/version-0.4-blue.svg)](https://github.com/go-aah/log/releases/latest) [![GoDoc](https://godoc.org/aahframework.org/log.v0?status.svg)](https://godoc.org/aahframework.org/log.v0)
3+
[![Version](https://img.shields.io/badge/version-0.5-blue.svg)](https://github.com/go-aah/log/releases/latest) [![GoDoc](https://godoc.org/aahframework.org/log.v0?status.svg)](https://godoc.org/aahframework.org/log.v0)
44
[![License](https://img.shields.io/github/license/go-aah/log.svg)](LICENSE)
55

6-
***v0.4 [released](https://github.com/go-aah/log/releases/latest) and tagged on Jun 01, 2017***
6+
***v0.5 [released](https://github.com/go-aah/log/releases/latest) and tagged on Jul 22, 2017***
77

88
Simple, flexible & powerful `Go` logger inspired by standard logger & Google glog. aah framework utilizes `log` library across.
99

console_receiver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var (
2727
LevelTrace: []byte("\033[0;35m"), // magenta (purple)
2828
}
2929

30-
_ Receiver = &ConsoleReceiver{}
30+
_ Receiver = (*ConsoleReceiver)(nil)
3131
)
3232

3333
// ConsoleReceiver writes the log entry into os.Stderr.

file_receiver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var (
2020
// backupTimeFormat is used for timestamp with filename on rotation
2121
backupTimeFormat = "2006-01-02-15-04-05.000"
2222

23-
_ Receiver = &FileReceiver{}
23+
_ Receiver = (*FileReceiver)(nil)
2424
)
2525

2626
// FileReceiver writes the log entry into file.

0 commit comments

Comments
 (0)