File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ v1.0.5 (30.06.2018)
5
+ -------
6
+ - docker compatible logging (forcing TTY output for logrus)
7
+
4
8
v1.0.4 (25.06.2018)
5
9
-------
6
10
- changes in server shutdown sequence
Original file line number Diff line number Diff line change 2
2
cd $( dirname " ${BASH_SOURCE[0]} " )
3
3
OD=" $( pwd) "
4
4
# Pushes application version into the build information.
5
- RR_VERSION=1.0.3
5
+ RR_VERSION=1.0.5
6
6
7
7
# Hardcode some values to the core package
8
8
LDFLAGS=" $LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION} "
Original file line number Diff line number Diff line change @@ -34,12 +34,15 @@ import (
34
34
"github.com/spiral/roadrunner/cmd/rr/debug"
35
35
_ "github.com/spiral/roadrunner/cmd/rr/http"
36
36
37
+ "github.com/sirupsen/logrus"
37
38
"github.com/spf13/cobra"
38
39
)
39
40
40
41
var debugMode bool
41
42
42
43
func main () {
44
+ // forcing text based logging
45
+ rr .Logger .Formatter = & logrus.TextFormatter {ForceColors : true }
43
46
44
47
// provides ability to make local connection to services
45
48
rr .Container .Register (rpc .ID , & rpc.Service {})
You can’t perform that action at this time.
0 commit comments