Skip to content

Commit

Permalink
[MODORDERS-989] - Added logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Khamidulla Abdulkhakimov authored and Khamidulla Abdulkhakimov committed Jan 22, 2024
1 parent ff4e691 commit f2a7f21
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/java/org/folio/helper/ExpectHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import io.vertx.core.json.JsonObject;
import one.util.streamex.StreamEx;
import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.folio.rest.core.models.RequestContext;
import org.folio.rest.jaxrs.model.ExpectCollection;
import org.folio.rest.jaxrs.model.ExpectPiece;
Expand All @@ -25,7 +27,11 @@
import static java.util.stream.Collectors.toList;

public class ExpectHelper extends CheckinReceivePiecesHelper<ExpectPiece> {

private static final Logger logger = LogManager.getLogger(ExpectHelper.class);
/**
* Map with PO line id as a key and value is map with piece id as a key and
* {@link ExpectPiece} as a value
*/
private final Map<String, Map<String, ExpectPiece>> expectPieces;

public ExpectHelper(ExpectCollection expectCollection, Map<String, String> okapiHeaders, Context ctx) {
Expand Down

0 comments on commit f2a7f21

Please sign in to comment.