コード例 #1
0
void log(const std::string& tableName, const StructuredLogEntry& cols) {
  if (enabled()) {
    s_impl(tableName, cols);
  }
}
コード例 #2
0
ファイル: struct-log.cpp プロジェクト: AeroEng43/hhvm
void StructuredLog::log(const std::string& tableName,
                        const std::map<std::string, int64_t>& cols) {
  if (enabled()) {
    s_impl(tableName, cols);
  }
}