File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
# graphqlws
2
2
3
3
Implementation of the [ GraphQL over WebSocket protocol] in Go.
4
+ Brought to you by [ Functional Foundry] ( https://functionalfoundry.com ) .
4
5
5
6
[ API Documentation] ( https://godoc.org/github.com/functionalfoundry/graphqlws )
6
7
@@ -41,7 +42,7 @@ import (
41
42
" net/http"
42
43
43
44
" github.com/functionalfoundry/graphqlws"
44
- " github.com/graphql-go/graphql
45
+ " github.com/graphql-go/graphql"
45
46
)
46
47
47
48
func main () {
@@ -117,10 +118,10 @@ for _, conn := range subscriptions {
117
118
118
119
### Logging
119
120
120
- The library uses [logrus](https://github.com/sirupsen/logrus) for logging at the moment .
121
+ ` graphqlws ` uses [ logrus] ( https://github.com/sirupsen/logrus ) for logging.
121
122
In the future we might remove those logs entirely to leave logging entirely to developers
122
- using `graphqlws`. For the moment , you can control the logging level of `graphqlws`
123
- by setting it through `logrus`:
123
+ using ` graphqlws ` . Given the current solution , you can control the logging level of
124
+ ` graphqlws ` by setting it through ` logrus ` :
124
125
125
126
``` go
126
127
import (
@@ -132,8 +133,9 @@ import (
132
133
log.SetLevel (log.WarnLevel )
133
134
```
134
135
136
+ ## License
135
137
136
- Copyright (C) 2017 Functional Foundry, LLC.
138
+ Copyright © 2017 Functional Foundry, LLC.
137
139
138
140
Licensed under the [ MIT License] ( LICENSE.md ) .
139
141
You can’t perform that action at this time.
0 commit comments