Skip to content

Commit

Permalink
Releasing V1.0.0-rc.10 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yogiraj Awati authored and luluzhao committed Feb 19, 2019
1 parent 8c8a645 commit 12231bd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.0.0-rc.10 (2019-02-19)
================================
### SDK Breaking Changes
* `xray.Config{}` fields `LogLevel` and `LogFormat` are deprecated and no longer have any effect. Users will have to reset their min log level if they weren't using the default of "info" using `xray.SetLogger()` . The log levels `Trace` and `Tracef` are replaced by `Debug` and `Debugf` respectively. [PR #82](https://github.com/aws/aws-xray-sdk-go/pull/82), [Issue #15](https://github.com/aws/aws-xray-sdk-go/issues/15)

### SDK Enhancements
* Don't try to udp dial emitter at package load time [PR #83](https://github.com/aws/aws-xray-sdk-go/pull/83)
* Explicit plugin initialization [PR #81](https://github.com/aws/aws-xray-sdk-go/pull/81)

Release v1.0.0-rc.9 (2018-12-20)
================================
### SDK Enhancements
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ The following people have contributed to the AWS X-Ray SDK for Go's design and/o
* James Bowman
* Lulu Zhao
* Muir Manders
* Raniere Medeiros
* Raymond Lin
* Rohit Banga
* Yogiraj Awati
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ import (
func init() {
xray.Configure(xray.Config{
DaemonAddr: "127.0.0.1:2000", // default
LogLevel: "info", // default
ServiceVersion: "1.2.3",
})
}
Expand Down Expand Up @@ -221,7 +220,7 @@ const (
)
```

The default logger logs to stdout at "info" and above. To change the logger, call `xray.SetLogger(myLogger)`. There is a default logger implementation that writes to an `io.Writer` from a specified minimum log level. For example, to log to stderr at "error" and above:
The default logger logs to [stdout](https://golang.org/pkg/syscall/#Stdout) at "info" and above. To change the logger, call `xray.SetLogger(myLogger)`. There is a default logger implementation that writes to an `io.Writer` from a specified minimum log level. For example, to log to stderr at "error" and above:

```go
xray.SetLogger(xraylog.NewDefaultLogger(os.Stderr, xraylog.LogLevelError))
Expand Down
2 changes: 1 addition & 1 deletion xray/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

// SDKVersion records the current X-Ray Go SDK version.
const SDKVersion = "1.0.0-rc.9"
const SDKVersion = "1.0.0-rc.10"

// SDKType records which X-Ray SDK customer uses.
const SDKType = "X-Ray for Go"
Expand Down

0 comments on commit 12231bd

Please sign in to comment.