Skip to content

Commit fe14c12

Browse files
committed
readme update for v0.1 release
1 parent 03e494a commit fe14c12

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
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)](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)
33

4+
***v0.1 [released](https://github.com/go-aah/log/releases/latest) and tagged on Jan 14, 2017***
5+
46
Simple, flexible & powerful `Go` logger inspired by standard logger & Google glog. aah framework utilizes `log` library across.
57

6-
*It's an independent library, can be used separately with any `Go` language project. Feel free to use it.*
8+
*`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.*
9+
10+
# Installation
11+
#### Stable - Version
12+
```sh
13+
# install the library
14+
go get -u aahframework.org/log
15+
```
716

817
See official page [TODO]

go.test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
echo "" > coverage.txt
55

66
for d in $(go list ./... | grep -v vendor); do
7-
go test -coverprofile=profile.out -covermode=atomic $d
7+
go test -v -coverprofile=profile.out -covermode=atomic $d
88
if [ -f profile.out ]; then
99
cat profile.out >> coverage.txt
1010
rm profile.out

prepare-aah-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Preparing aahframework custom environment for travis"
55

66
# export variables
77
export PATH=$GOPATH/bin:$PATH
8-
export CURRENT_BRANCH="develop"
8+
export CURRENT_BRANCH="integration"
99
export AAH_SRC_PATH=$GOPATH/src/aahframework.org
1010

1111
# find out current git branch

0 commit comments

Comments
 (0)