Chromium Code Reviews| Index: impl/prod/logger.go |
| diff --git a/impl/prod/logger.go b/impl/prod/logger.go |
| index 99e6324d66ccc775e3a8cf5a662cf60437e6989c..bc8be25b66e4af366a0d0d80035a73a19385b875 100644 |
| --- a/impl/prod/logger.go |
| +++ b/impl/prod/logger.go |
| @@ -40,7 +40,7 @@ func (gl *loggerImpl) Errorf(format string, args ...interface{}) { |
| // TODO(riannucci): prefix with caller's code location. |
| func (gl *loggerImpl) LogCall(l logging.Level, calldepth int, format string, args []interface{}) { |
| - if gl.aeCtx == nil || !logging.IsLogging(gl.aeCtx, l) { |
| + if gl.aeCtx == nil || !logging.IsLogging(gl.ic, l) { |
|
iannucci
2015/12/23 16:34:43
If you look below (line 62), we use the ic context
|
| return |
| } |