Bug 1419834 - Fix missing newline in logging code. r?botond draft
authorKartikaya Gupta <kgupta@mozilla.com>
Wed, 29 Nov 2017 23:16:22 -0500
changeset 705556 372df5ff4c4af48848125fb3e105ca7e8b60a327
parent 705442 38f49346a200cc25492236c7b3c536fc835fe031
child 705557 53f6a135dd94c08dc08f4f0c35ba0686633a0f5e
push id91520
push userkgupta@mozilla.com
push dateThu, 30 Nov 2017 11:03:41 +0000
reviewersbotond
bugs1419834
milestone59.0a1
Bug 1419834 - Fix missing newline in logging code. r?botond MozReview-Commit-ID: 2nW6xrV4si1
gfx/layers/apz/src/APZCTreeManager.cpp
--- a/gfx/layers/apz/src/APZCTreeManager.cpp
+++ b/gfx/layers/apz/src/APZCTreeManager.cpp
@@ -972,17 +972,17 @@ WillHandleInput(const PanGestureOrScroll
 }
 
 void
 APZCTreeManager::FlushApzRepaints(uint64_t aLayersId)
 {
   // Previously, paints were throttled and therefore this method was used to
   // ensure any pending paints were flushed. Now, paints are flushed
   // immediately, so it is safe to simply send a notification now.
-  APZCTM_LOG("Flushing repaints for layers id 0x%" PRIx64, aLayersId);
+  APZCTM_LOG("Flushing repaints for layers id 0x%" PRIx64 "\n", aLayersId);
   const LayerTreeState* state =
     CompositorBridgeParent::GetIndirectShadowTree(aLayersId);
   MOZ_ASSERT(state && state->mController);
   state->mController->DispatchToRepaintThread(
     NewRunnableMethod("layers::GeckoContentController::NotifyFlushComplete",
                       state->mController,
                       &GeckoContentController::NotifyFlushComplete));
 }