Skip to content

Commit

Permalink
fix log4j to log4j2 issue (#8966)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanHoogland authored Apr 24, 2024
1 parent e330d76 commit a6f3560
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
import org.apache.cloudstack.utils.bytescale.ByteScaleUtils;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import javax.inject.Inject;
import java.util.ArrayList;
Expand All @@ -84,7 +85,7 @@
import java.util.Map;

public class VolumeImportUnmanageManagerImpl implements VolumeImportUnmanageService {
protected Logger logger = Logger.getLogger(VolumeImportUnmanageManagerImpl.class);
protected Logger logger = LogManager.getLogger(VolumeImportUnmanageManagerImpl.class);

@Inject
private AccountManager accountMgr;
Expand Down

0 comments on commit a6f3560

Please sign in to comment.