Skip to content

Commit c211c8c

Browse files
author
Jannis Pohlmann
committed
README: Improve a little bit more
1 parent 940048d commit c211c8c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# graphqlws
22

33
Implementation of the [GraphQL over WebSocket protocol] in Go.
4+
Brought to you by [Functional Foundry](https://functionalfoundry.com).
45

56
[API Documentation](https://godoc.org/github.com/functionalfoundry/graphqlws)
67

@@ -41,7 +42,7 @@ import (
4142
"net/http"
4243

4344
"github.com/functionalfoundry/graphqlws"
44-
"github.com/graphql-go/graphql
45+
"github.com/graphql-go/graphql"
4546
)
4647

4748
func main() {
@@ -117,10 +118,10 @@ for _, conn := range subscriptions {
117118

118119
### Logging
119120

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.
121122
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`:
124125

125126
```go
126127
import (
@@ -132,8 +133,9 @@ import (
132133
log.SetLevel(log.WarnLevel)
133134
```
134135

136+
## License
135137

136-
Copyright (C) 2017 Functional Foundry, LLC.
138+
Copyright © 2017 Functional Foundry, LLC.
137139

138140
Licensed under the [MIT License](LICENSE.md).
139141

0 commit comments

Comments
 (0)