We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca5aa5 commit 5fe847cCopy full SHA for 5fe847c
main.go
@@ -18,6 +18,7 @@ package main
18
import (
19
"context"
20
"fmt"
21
+ "io"
22
"os"
23
24
"github.com/arduino/arduino-cli/commands"
@@ -28,9 +29,13 @@ import (
28
29
"github.com/arduino/arduino-cli/internal/i18n"
30
rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
31
"github.com/arduino/go-paths-helper"
32
+ "github.com/sirupsen/logrus"
33
)
34
35
func main() {
36
+ // Disable logging until it is setup in the arduino-cli pre-run
37
+ logrus.SetOutput(io.Discard)
38
+
39
// Create a new ArduinoCoreServer
40
srv := commands.NewArduinoCoreServer()
41
0 commit comments