Skip to content
Snippets Groups Projects
Commit 50515931 authored by Robert Butora's avatar Robert Butora
Browse files

cutout: remove defualt for metadata-csv file-name

parent b0c2f07a
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ import java.io.PrintWriter;
class Settings
{
private static final Logger LOGGER = Logger.getLogger("Settings");
private static final Logger LOGGER = Logger.getLogger(Settings.class.getName());
static final String CUTOUT_PROPERTIES = "cutout.properties";
......@@ -97,7 +97,7 @@ class Settings
// no reasonable code-defaults can be invented
public static Settings getInstance()
{
LOGGER.info("Settings loading from: " + CUTOUT_PROPERTIES);
LOGGER.config("Settings loading from: " + CUTOUT_PROPERTIES);
try
{
InputStream ins =
......@@ -146,7 +146,8 @@ class Settings
fitspaths.FITSpath = properties.getProperty("fits_path_surveys", "/srv/surveys").strip();
fitspaths.FITScutpath = properties.getProperty("fits_path_cutouts", "/srv/cutouts").strip();
fitspaths.FITSRemoteUrlCutouts = properties.getProperty("fits_url_cutouts", "").strip();
fitspaths.surveysMetadataAbsPathname = properties.getProperty("surveys_metadata_abs_pathname", "/srv/surveys/survey_populate.csv").strip();
fitspaths.surveysMetadataAbsPathname = properties.getProperty("surveys_metadata_abs_pathname", "").strip();
//fitspaths.surveysMetadataAbsPathname = properties.getProperty("surveys_metadata_abs_pathname", "/srv/surveys/survey_populate.csv").strip();
return fitspaths;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment