in invoker/core/src/main/java/com/google/cloud/functions/invoker/gcf/ExecutionIdUtil.java [39:48]
public void removeExecutionId() {
if (!executionIdLoggingEnabled()) {
return;
}
for (Handler handler : rootLogger.getHandlers()) {
if (handler instanceof JsonLogHandler) {
((JsonLogHandler) handler).removeExecutionId(Thread.currentThread().getId());
}
}
}