You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We already have method SetTag which add tags as key value and send it back to collector. I found that you have log method which rather than logging message string sends them as tag which i found is wrong. one way we already have a method which can add tags so log should be doing actual logging.. not adding tags again. that way library will have both way to add tags and add logs separately. however i found that the core tracer which you are using here has already method to log separately. the method is recordMessage. so if you can use that when log is being called, then you would have support for logs as well.
I'll anyway raise PR for it. but you can comment here your thoughts.