123124125126127128129130131132
@Override public void setNum(String key, Long num) { if (num == null) { return; } LoggingContext lc = getLoggingContext(); if (lc != null) { lc.setNum(key, num); } }
131132133134135136137138139140141
} } @Override public Object getValue(String key) { LoggingContext lc = getLoggingContext(); if (lc == null) { return null; } return lc.getValue(key); }
140141142143144145146147148149
return lc.getValue(key); } @Override public void setValue(String key, Object value) { LoggingContext lc = getLoggingContext(); if (lc != null) { lc.setValue(key, value); } }
148149150151152153154155156157158159
} } @Override public void flush() { LoggingContext lc = getLoggingContext(); if (lc != null) { stopTimer(LoggingService.TIMER_AURA); stopTimer(LoggingService.TIMER_TOTAL); lc.logRequestValues(); } }
169170171172173174175176177178179
return la.getLoggingContext(); } @Override public KeyValueLogger getKeyValueLogger(StringBuffer log) { LoggingContext lc = getLoggingContext(); if (lc != null) { return lc.getKeyValueLogger(log); } return null; }
178179180181182183184185186187
return null; } @Override public void logCSPReport(Map<String, Object> report) { LoggingContext lc = getLoggingContext(); if (lc != null) { lc.logCSPReport(report); } }