Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Litvintsev <[email protected]>
  • Loading branch information
DmitryLitvintsev committed Nov 5, 2024
1 parent 6a6836b commit 1b993c4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.stereotype.Component;

Expand All @@ -129,7 +127,6 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
@Api(value = "tape", authorizations = {@Authorization("basicAuth")})
@Path("tape/stage")
public final class StageResources {
private static final Logger LOGGER = LoggerFactory.getLogger(StageResources.class);
private static final String STAGE = "STAGE";

@Context
Expand Down Expand Up @@ -406,7 +403,6 @@ private BulkRequest toBulkRequest(String requestPayload, FsPath rootPath) {
if (file.has("diskLifetime")) {
jsonLifetimes.put(path,
TimeUtils.validateDuration(file.getString("diskLifetime")));
LOGGER.error("Path {}, diskLifetime {}, {}", path, file.getString("diskLifetime"), TimeUtils.validateDuration(file.getString("diskLifetime")));
}
if (file.has("targetedMetadata")) {
getTargetedMetadataForPath(file).ifPresent(mdata ->
Expand Down

0 comments on commit 1b993c4

Please sign in to comment.