We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035cd09 commit d079692Copy full SHA for d079692
process/coffee_machine_process.go
@@ -43,6 +43,11 @@ var (
43
stdoutLog = log.New(os.Stderr, "< ", 0)
44
)
45
46
+func init() {
47
+ // debug log is muted by default
48
+ debugLog.SetOutput(io.Discard)
49
+}
50
+
51
var errTimeout = fmt.Errorf("timeout while reading response from coffee machine")
52
53
// LangImplPathKey is the environment variable key used to specify the path to the language implementation to run
@@ -70,7 +75,7 @@ type P struct {
70
75
71
76
// NewCoffeeMachineProcess creates (but does not start) a new process P
72
77
func NewCoffeeMachineProcess() (*P, error) {
73
- infoLog.Println("creating Coffee Machine Process")
78
+ infoLog.Println("creating coffee machine process")
74
79
80
langImplPath := os.Getenv(LangImplPathKey)
81
0 commit comments