[
https://issues.apache.org/jira/browse/TS-3694?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14591998#comment-14591998
]
ASF subversion and git services commented on TS-3694:
-----------------------------------------------------
Commit 1f17b60e50543772653f906ffc3c6341e8d6a905 in trafficserver's branch
refs/heads/master from [~danobi]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=1f17b60 ]
TS-3694: Fix outdated Log::error documentation
Comment for function did not reflect code.
This closes #227
> Fix function documentation to Log::error
> ----------------------------------------
>
> Key: TS-3694
> URL: https://issues.apache.org/jira/browse/TS-3694
> Project: Traffic Server
> Issue Type: Improvement
> Components: Logging
> Reporter: Daniel Xu
> Assignee: Daniel Xu
> Priority: Trivial
> Fix For: Docs
>
>
> The description for this function seems to be out of date. The note directly
> contradicts what the function actually does.
> {code:title=Log.cc|borderStyle=solid}
> /*-------------------------------------------------------------------------
> Log::error
> Make an entry into the current error log. For convenience, it is given in
> both variable argument (format, ...) and stdarg (format, va_list) forms.
> Note that Log::error could call Log::va_error after calling va_start
> so that va_error handles the statistics update. However, to make
> Log::error slightly more efficient this is not the case. The
> downside is that one has to be careful to update both functions if
> need be.
> -------------------------------------------------------------------------*/
> int
> Log::error(const char *format, ...)
> {
> va_list ap;
> int ret;
> va_start(ap, format);
> ret = Log::va_error(format, ap);
> va_end(ap);
> return ret;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)