in services/library/src/main/java/com/google/cloud/pso/bq_pii_classifier/helpers/LoggingHelper.java [130:147]
public void logSuccessDispatcherTrackingId(String trackingId, String dispatchedTrackingId, TableSpec tableSpec) {
Object [] attributes = new Object[]{
kv("dispatched_tracking_id", dispatchedTrackingId),
kv("dispatched_tablespec", tableSpec.toSqlString()),
kv("dispatched_tablespec_project", tableSpec.getProject()),
kv("dispatched_tablespec_dataset", tableSpec.getDataset()),
kv("dispatched_tablespec_table", tableSpec.getTable()),
};
logWithTracker(
ApplicationLog.DISPATCHED_REQUESTS_LOG,
trackingId,
String.format("Dispatched request with trackindId `%s`", dispatchedTrackingId),
Level.INFO,
attributes
);
}