Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go moodule の path を emahiro -> DeNA に変更する #31

Merged
merged 1 commit into from
Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# App Engine Logger

[![Build Status](https://travis-ci.org/emahiro/aelog.svg?branch=master)](https://travis-ci.org/emahiro/aelog)
[![Go Report Card](https://goreportcard.com/badge/github.com/emahiro/aelog)](https://goreportcard.com/report/github.com/emahiro/aelog)
[![GoDoc](https://godoc.org/github.com/emahiro/aelog?status.svg)](https://godoc.org/github.com/emahiro/aelog)
[![Build Status](https://travis-ci.org/DeNA/aelog.svg?branch=master)](https://travis-ci.org/DeNA/aelog)
[![Go Report Card](https://goreportcard.com/badge/github.com/DeNA/aelog)](https://goreportcard.com/report/github.com/DeNA/aelog)
[![GoDoc](https://godoc.org/github.com/DeNA/aelog?status.svg)](https://godoc.org/github.com/DeNA/aelog)

This is Logger for App Engine 2nd Generation.
App Engine Plain Logger only supports structured logging (ref: [https://cloud.google.com/logging/docs/structured-logging](https://cloud.google.com/logging/docs/structured-logging)), so this does not support logging experience which proprietary App Engine API provided.
Expand Down
2 changes: 1 addition & 1 deletion aelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"os"
"sync"

"github.com/emahiro/aelog/internal/spancontext"
"github.com/DeNA/aelog/internal/spancontext"
)

type logger struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/emahiro/aelog
module github.com/DeNA/aelog

require go.opencensus.io v0.22.0
2 changes: 1 addition & 1 deletion middleware/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package middleware
import (
"net/http"

"github.com/emahiro/aelog/internal/spancontext"
"github.com/DeNA/aelog/internal/spancontext"
)

// AELogger is middleware to set spancontext in the context.
Expand Down