@ -538,8 +538,8 @@ public class BesuCommand implements DefaultCommandValues, Runnable {
names = { "--logging" , "-l" } ,
names = { "--logging" , "-l" } ,
paramLabel = "<LOG VERBOSITY LEVEL>" ,
paramLabel = "<LOG VERBOSITY LEVEL>" ,
description =
description =
"Logging verbosity levels: OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL (default: ${DEFAULT-VALUE} )" )
"Logging verbosity levels: OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL (default: INFO )" )
private final Level logLevel = Level . INFO ;
private final Level logLevel = null ;
@Option (
@Option (
names = { "--miner-enabled" } ,
names = { "--miner-enabled" } ,
@ -932,7 +932,7 @@ public class BesuCommand implements DefaultCommandValues, Runnable {
if ( ! NetworkUtility . isNetworkInterfaceAvailable ( p2pInterface ) ) {
if ( ! NetworkUtility . isNetworkInterfaceAvailable ( p2pInterface ) ) {
throw new ParameterException ( commandLine , failMessage ) ;
throw new ParameterException ( commandLine , failMessage ) ;
}
}
} catch ( UnknownHostException | SocketException e ) {
} catch ( final UnknownHostException | SocketException e ) {
throw new ParameterException ( commandLine , failMessage , e ) ;
throw new ParameterException ( commandLine , failMessage , e ) ;
}
}
}
}