aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/log_android.c
Commit message (Collapse)AuthorAge
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* fixup compile error in log_android.cGravatar Todd Poynor2015-01-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | compilation errors introduced in the following commit. commit 0cd69562fd8c005361e3f32ac0d3f9d43b713827 Author: ctiller <ctiller@google.com> Date: Fri Jan 9 14:22:10 2015 -0800 Allow logging mechanism to be overridden by applications. This necessitated the removal of gpr_vlog to keep a clean interface. Change on 2015/01/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83634996 Errors are: grpc/src/core/support/log_android.c:75:20: error: 'file' undeclared (first use in this function) display_file = file; ^ grpc/src/core/support/log_android.c:75:20: note: each undeclared identifier is reported only once for each function it appears in grpc/src/core/support/log_android.c:79:13: error: 'prefix' undeclared (first use in this function) asprintf(&prefix, "%s:%d] %s", display_file, args->line, args->message); ^ grpc/src/core/support/log_android.c:85:8: error: 'suffix' undeclared (first use in this function) free(suffix); ^
* Allow logging mechanism to be overridden by applications.Gravatar ctiller2015-01-12
| | | | | | | | This necessitated the removal of gpr_vlog to keep a clean interface. Change on 2015/01/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83634996
* Tweaking log calls a bit.Gravatar nnoble2014-12-12
| | | | | | | | | -) Introducing gpr_vlog so to spare a few vsprintf later (at least one for now) -) Renaming statistics/log.* to statistics/census_log.* to avoid collisions. Change on 2014/12/12 by nnoble <nnoble@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81995756
* Initial import.Gravatar Nicolas Noble2014-11-26