mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
attempting to silencing jmdns complains about missing network interfaces
This commit is contained in:
parent
cca59f7e91
commit
45f7d1e6f8
@ -28,6 +28,8 @@ import java.io.*;
|
||||
import java.util.*;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.filechooser.FileNameExtensionFilter;
|
||||
@ -127,6 +129,7 @@ public class Base {
|
||||
|
||||
static public void main(String args[]) throws Exception {
|
||||
System.setProperty(LogFactoryImpl.LOG_PROPERTY, NoOpLog.class.getCanonicalName());
|
||||
Logger.getLogger("javax.jmdns").setLevel(Level.OFF);
|
||||
|
||||
initPlatform();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user