mirror of https://github.com/go-gorm/gorm.git
Merge branch 'master' into plugin_system
This commit is contained in:
commit
950518ae24
|
@ -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
|
||||||
|
|
|
@ -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{}) {
|
||||||
|
|
Loading…
Reference in New Issue