Merge branch 'master' into plugin_system

This commit is contained in:
Jinzhu 2014-01-22 19:02:05 +08:00
commit 950518ae24
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,12 @@
The fantastic ORM library for Golang, aims to be developer friendly. The fantastic ORM library for Golang, aims to be developer friendly.
## Install
```
go get github.com/jinzhu/gorm
```
## Overview ## Overview
* Chainable API * Chainable API

View File

@ -66,7 +66,7 @@ func fileWithLineNum() string {
} }
func (s *DB) print(v ...interface{}) { func (s *DB) print(v ...interface{}) {
go s.parent.logger.(logger).Print(v...) s.parent.logger.(logger).Print(v...)
} }
func (s *DB) log(v ...interface{}) { func (s *DB) log(v ...interface{}) {