use of core.framework.impl.log.LogManager in project core-ng-project by neowu.
the class ActionLogContext method stat.
// used to collect business metrics, and can be aggregated by Elasticsearch/Kibana
public static void stat(String key, Number value) {
LogManager logManager = logManager();
ActionLog actionLog = logManager.currentActionLog();
if (actionLog != null) {
actionLog.stat(key, value);
}
}
Aggregations