sven-lange-last commented on a change in pull request #4609: Add namespace field to activation log URL: https://github.com/apache/openwhisk/pull/4609#discussion_r327054113
########## File path: common/scala/src/main/scala/org/apache/openwhisk/core/database/ActivationFileStorage.scala ########## @@ -84,9 +84,11 @@ class ActivationFileStorage(logFilePrefix: String, private def transcribeLogs(activation: WhiskActivation, additionalFields: Map[String, JsValue]) = activation.logs.logs.map { log => - val line = JsObject( - Map("type" -> "user_log".toJson) ++ Map("message" -> log.toJson) ++ Map( - "activationId" -> activation.activationId.toJson) ++ additionalFields) + val line = + JsObject( + Map("type" -> "user_log".toJson) ++ Map("message" -> log.toJson) ++ Map( + "activationId" -> activation.activationId.toJson) ++ Map( + "namespace" -> activation.namespace.asString.toJson) ++ additionalFields) Review comment: We clarified the open questions in a personal Slack communication and agreed on a solution. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services