Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit 7826122

Browse files
authored
Update gdal_timesnap.cpp
1 parent f16833c commit 7826122

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/util/gdal_timesnap.cpp

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,21 @@ GDALTimesnap::GDALDataLoadingInfo GDALTimesnap::getDataLoadingInfo(Json::Value d
115115

116116
// get parameters
117117
std::string time_format = channelJson.get("time_format", datasetJson.get("time_format", "")).asString();
118-
Log::debug(concat("getDataLoadingInfo: time_format: ", time_format));
119118
std::string time_start = channelJson.get("time_start", datasetJson.get("time_start", "")).asString();
120-
Log::debug(concat("getDataLoadingInfo: time_start: ", time_start));
121119
std::string time_end = channelJson.get("time_end", datasetJson.get("time_end", "")).asString();
122-
Log::debug(concat("getDataLoadingInfo: time_end: ", time_end));
123120

124121
std::string path = channelJson.get("path", datasetJson.get("path", "")).asString();
125-
Log::debug(concat("getDataLoadingInfo: path: ", path));
126122
std::string fileName = channelJson.get("file_name", datasetJson.get("file_name", "")).asString();
127-
Log::debug(concat("getDataLoadingInfo: fileName: ", fileName));
128123

124+
Log::debug(
125+
concat("getDataLoadingInfo: time_format: ", time_format,
126+
", time_start: ", time_start,
127+
", time_end: ", time_end,
128+
", path: ", path,
129+
", fileName: ", fileName
130+
)
131+
);
132+
129133
channel = channelJson.get("channel", channel).asInt();
130134

131135
// resolve time

0 commit comments

Comments
 (0)