-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
helm-chart/common: Add logging config for service components #375
helm-chart/common: Add logging config for service components #375
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe asr/tts/web-retriever also support LOGFLAG, please add them too. Also please update the manifest files for GMC
70bb238
to
b6ec8f9
Compare
@@ -20,3 +20,4 @@ data: | |||
{{- else }} | |||
no_proxy: {{ .Values.global.no_proxy | quote }} | |||
{{- end }} | |||
LOGFLAG: {{ .Values.LOGFLAG | quote }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On second thought, based on the current python code logic1 and logic2, whenever we set the LOGFLAG env as a non-empty string, it will be treated as boolean True
.
So we need to change the template accordingly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update each values.yaml file to address the issue, please help take a look.
Logging is added in GenAIComps to print input/output, add it here for components debugging. Signed-off-by: Cathy Zhang <[email protected]>
b6ec8f9
to
e221eb9
Compare
…oject#375) Logging is added in GenAIComps to print input/output, add it here for components debugging. Signed-off-by: Cathy Zhang <[email protected]>
Fixed issue #370 |
Logging is added in GenAIComps to print input/output, add it here for components debugging.