-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement user defined logger (with sensible defaults)
- Loading branch information
Showing
3 changed files
with
45 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package log | ||
|
||
import ( | ||
"context" | ||
"log" | ||
"runtime" | ||
) | ||
|
||
// Logger is the interface used to log panics that occur durring query execution. It is setable via graphql.ParseSchema | ||
type Logger interface { | ||
LogPanic(ctx context.Context, value interface{}) | ||
} | ||
|
||
// DefaultLogger is the default logger used to log panics that occur durring query execution | ||
type DefaultLogger struct{} | ||
|
||
// LogPanic is used to log recovered panic values that occur durring query execution | ||
func (l *DefaultLogger) LogPanic(_ context.Context, value interface{}) { | ||
const size = 64 << 10 | ||
buf := make([]byte, size) | ||
buf = buf[:runtime.Stack(buf, false)] | ||
log.Printf("graphql: panic occurred: %v\n%s", value, buf) | ||
} |