Skip to content

Commit 68cef10

Browse files
committed
change: package name
1 parent a371e96 commit 68cef10

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
stackdriver-request-context-log
22
===
3-
[![CircleCI](https://circleci.com/gh/yfuruyama/stackdriver-request-context-log.svg?style=svg)](https://circleci.com/gh/yfuruyama/stackdriver-request-context-log)
43

54
Stackdriver Logging Go library for grouping a request log and application logs.
65

76
With this library all application logs in the request are grouped and displayed under the request log (like App Engine).
87

9-
<img alt="screenshot" src="https://github.com/yfuruyama/stackdriver-request-context-log/blob/master/img/screenshot.png">
8+
<img alt="screenshot" src="https://github.com/gcp-kit/stalog/blob/master/img/screenshot.png">
109

1110
Note that the interface of this library is still **ALPHA** level quality.
1211
Breaking changes will be introduced frequently.
1312

1413
## Install
1514

1615
```
17-
go get -u github.com/yfuruyama/stackdriver-request-context-log
16+
go get -u github.com/gcp-kit/stalog
1817
```
1918

2019
## Example
@@ -29,7 +28,7 @@ import (
2928
"net/http"
3029
"os"
3130

32-
log "github.com/yfuruyama/stackdriver-request-context-log"
31+
log "github.com/gcp-kit/stalog"
3332
)
3433

3534
func main() {

context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package stackdriverlog
1+
package stalog
22

33
type contextKey struct{}
44

example/chi/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/http"
66
"os"
77

8+
log "github.com/gcp-kit/stalog"
89
"github.com/go-chi/chi"
9-
log "github.com/yfuruyama/stackdriver-request-context-log"
1010
)
1111

1212
func main() {

example/net_http/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"os"
77

8-
log "github.com/yfuruyama/stackdriver-request-context-log"
8+
log "github.com/gcp-kit/stalog"
99
)
1010

1111
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/yfuruyama/stackdriver-request-context-log
1+
module github.com/gcp-kit/stalog
22

33
go 1.14
44

middleware.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package stackdriverlog
1+
package stalog
22

33
import (
44
"context"

stackdriver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Package stackdriverlog provides application logger for Cloud Logging.
2-
package stackdriverlog
1+
// Package stalog provides application logger for Cloud Logging.
2+
package stalog
33

44
import (
55
"encoding/json"

stackdriver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package stackdriverlog
1+
package stalog
22

33
import (
44
"bytes"

0 commit comments

Comments
 (0)