We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ce829e4 commit 3304be6Copy full SHA for 3304be6
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