-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
implements zowe common logging format #70
base: feature/staging-int
Are you sure you want to change the base?
implements zowe common logging format #70
Conversation
Signed-off-by: E Kirschner <ekirschner@rocketsoftware.com>
zowe/zac#90 --> link to zowe common logging format |
} | ||
} | ||
else if (compID >= LOG_PROD_ZIS && compID < LOG_PROD_ZSS) { | ||
snprintf(prefix,5,"_zis"); |
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.
We need to know how well this works for zis
break; | ||
case 0xA0000: snprintf(suffix,10,"discovery"); | ||
break; | ||
case 0xB0000: snprintf(suffix,12,"dataservice"); |
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.
dataservice is here, yet unixfile is in zss, and neither restfile nor restdataservice are here, since I made them afterward. May want to revisit.
else if (compID >= LOG_PROD_ZSS && compID < LOG_PROD_PLUGINS ) { | ||
snprintf(prefix,5,"_zss"); | ||
switch (id) { | ||
case 0x10000: snprintf(suffix,11,"mvd_server"); |
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.
its not right to merge this when we have the perfect opportunity to rename it now before it becomes too visible.
Signed-off-by: E Kirschner ekirschner@rocketsoftware.com