Skip to content

Commit

Permalink
readme update for v0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Jan 15, 2017
1 parent 03e494a commit fe14c12
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion go.test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion prepare-aah-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fe14c12

Please sign in to comment.