* @return A {@link ScanState}. If there is a problem with the given Scan Server, the default
* value {@link ScanState#STOPPED} is returned
* @throws SalsaDeviceException If <code>scanServerName</code> is <code>null</code>
*/
public static ScanState getScanState(String scanServerName) throws SalsaDeviceException {
ScanState state = ScanApi.getScanState(scanServerName);
LOGGER.info("{}.getScanState({})={}", SalsaAPI.class.getSimpleName(), scanServerName, state);
return state;
}