Skip to content

Commit 12231bd

Browse files
Yogiraj Awatiluluzhao
authored andcommitted
Releasing V1.0.0-rc.10 (#86)
1 parent 8c8a645 commit 12231bd

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Release v1.0.0-rc.10 (2019-02-19)
2+
================================
3+
### SDK Breaking Changes
4+
* `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)
5+
6+
### SDK Enhancements
7+
* Don't try to udp dial emitter at package load time [PR #83](https://github.com/aws/aws-xray-sdk-go/pull/83)
8+
* Explicit plugin initialization [PR #81](https://github.com/aws/aws-xray-sdk-go/pull/81)
9+
110
Release v1.0.0-rc.9 (2018-12-20)
211
================================
312
### SDK Enhancements

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ The following people have contributed to the AWS X-Ray SDK for Go's design and/o
55
* James Bowman
66
* Lulu Zhao
77
* Muir Manders
8+
* Raniere Medeiros
89
* Raymond Lin
910
* Rohit Banga
11+
* Yogiraj Awati

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ import (
6464
func init() {
6565
xray.Configure(xray.Config{
6666
DaemonAddr: "127.0.0.1:2000", // default
67-
LogLevel: "info", // default
6867
ServiceVersion: "1.2.3",
6968
})
7069
}
@@ -221,7 +220,7 @@ const (
221220
)
222221
```
223222

224-
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:
223+
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:
225224

226225
```go
227226
xray.SetLogger(xraylog.NewDefaultLogger(os.Stderr, xraylog.LogLevelError))

xray/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

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

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

0 commit comments

Comments
 (0)