in services/library/src/main/java/com/google/cloud/pso/bq_pii_classifier/helpers/LoggingHelper.java [223:241]
private void logFunctionLifeCycleEvent(String trackingId, FunctionLifeCycleEvent event) {
Object [] attributes = new Object[]{
kv("function_lifecycle_event", event),
kv("function_lifecycle_functionNumber", functionNumber),
};
logWithTracker(
ApplicationLog.TRACKER_LOG,
trackingId,
String.format("%s | %s | %s",
loggerName,
functionNumber,
event),
Level.INFO,
attributes
);
}