Add missing setter for gcp logger.

This commit is contained in:
Stephan Schnabel 2021-12-29 14:05:11 +01:00
parent 793ad1dbb8
commit 141f7275ef
Signed by: stephan.schnabel
GPG key ID: F74FE2422AA07290
2 changed files with 16 additions and 2 deletions

View file

@ -56,4 +56,12 @@ public class GcpJsonLayout extends JsonLayout {
map.put("serviceContext", serviceContext);
}
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public void setServiceVersion(String serviceVersion) {
this.serviceVersion = serviceVersion;
}
}