1
0
Fork 0

Log GOOS and GOARCH at startup

master
Philip O Toole 8 years ago
parent b56ff6cfc4
commit 5b0cc7bb98

@ -1,5 +1,6 @@
## 3.10.0 (unreleased)
- [PR #261](https://github.com/rqlite/rqlite/pull/261): Allow Raft Apply timeout to be configurable.
- [PR #262](https://github.com/rqlite/rqlite/pull/262): Log GOOS and GOARCH at startup.
## 3.9.2 (January 14th 2017)
- [PR #253](https://github.com/rqlite/rqlite/pull/254): Handle nil row returned by SQL execer. Fixes [issue #253](https://github.com/rqlite/rqlite/issues/253).

@ -138,6 +138,7 @@ func main() {
log.SetFlags(log.LstdFlags)
log.SetPrefix("[rqlited] ")
log.Printf("rqlited starting, version %s, commit %s, branch %s", version, commit, branch)
log.Printf("architecture target is %s, operating system target is %s", runtime.GOARCH, runtime.GOOS)
// Start requested profiling.
startProfile(cpuProfile, memProfile)

Loading…
Cancel
Save