Skip to content

Commit

Permalink
[minor] fix LoggerFactor in PartitionTimeExtractor (#3444)
Browse files Browse the repository at this point in the history
  • Loading branch information
wwj6591812 authored May 30, 2024
1 parent fe4e1e1 commit e77ea33
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

package org.apache.paimon.partition;

import org.apache.paimon.operation.FileStoreCommitImpl;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down Expand Up @@ -52,7 +50,8 @@
/** Time extractor to extract time from partition values. */
public class PartitionTimeExtractor {

private static final Logger LOG = LoggerFactory.getLogger(FileStoreCommitImpl.class);
private static final Logger LOG = LoggerFactory.getLogger(PartitionTimeExtractor.class);

private static final DateTimeFormatter TIMESTAMP_FORMATTER =
new DateTimeFormatterBuilder()
.appendValue(YEAR, 1, 10, SignStyle.NORMAL)
Expand Down

0 comments on commit e77ea33

Please sign in to comment.