Skip to content

Commit 9bfe03b

Browse files
committed
log from geography mapper
1 parent 3af01de commit 9bfe03b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

airbyte-workers/src/main/java/io/airbyte/workers/helper/DefaultGeographyMapper.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
import io.airbyte.config.Geography;
1010
import jakarta.inject.Singleton;
1111
import java.util.Map;
12+
import lombok.extern.slf4j.Slf4j;
1213

14+
@Slf4j
1315
@Singleton
1416
public class DefaultGeographyMapper implements GeographyMapper {
1517

@@ -26,6 +28,7 @@ public class DefaultGeographyMapper implements GeographyMapper {
2628

2729
@Override
2830
public String getTaskQueue(final Geography geography) {
31+
log.warn("Called DefaultGeographyMapper getTaskQueue for geography {}", geography);
2932
if (GEOGRAPHY_TASK_QUEUE_MAP.containsKey(geography)) {
3033
return GEOGRAPHY_TASK_QUEUE_MAP.get(geography);
3134
}

0 commit comments

Comments
 (0)