diff --git a/README.md b/README.md index b898944..49b0f0b 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,17 @@ # log - aah framework [![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)](https://goreportcard.com/report/aahframework.org/log) [![GoDoc](https://godoc.org/aahframework.org/log?status.svg)](https://godoc.org/aahframework.org/log) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) +***v0.1 [released](https://github.com/go-aah/log/releases/latest) and tagged on Jan 14, 2017*** + Simple, flexible & powerful `Go` logger inspired by standard logger & Google glog. aah framework utilizes `log` library across. -*It's an independent library, can be used separately with any `Go` language project. Feel free to use it.* +*`log` developed for aah framework. However, it's an independent library, can be used separately with any `Go` language project. Feel free to use it.* + +# Installation +#### Stable - Version +```sh +# install the library +go get -u aahframework.org/log +``` See official page [TODO] diff --git a/go.test.sh b/go.test.sh index 494b176..84936bf 100755 --- a/go.test.sh +++ b/go.test.sh @@ -4,7 +4,7 @@ set -e echo "" > coverage.txt for d in $(go list ./... | grep -v vendor); do - go test -coverprofile=profile.out -covermode=atomic $d + go test -v -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then cat profile.out >> coverage.txt rm profile.out diff --git a/prepare-aah-env.sh b/prepare-aah-env.sh index b3f03f6..a1de2b7 100755 --- a/prepare-aah-env.sh +++ b/prepare-aah-env.sh @@ -5,7 +5,7 @@ echo "Preparing aahframework custom environment for travis" # export variables export PATH=$GOPATH/bin:$PATH -export CURRENT_BRANCH="develop" +export CURRENT_BRANCH="integration" export AAH_SRC_PATH=$GOPATH/src/aahframework.org # find out current git branch