From d352331827c4ae35be0038b52697ca813c922a79 Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr." Date: Thu, 12 Dec 2013 15:12:52 -0800 Subject: [PATCH] [sphinx] fix build error --- doc/manual/source/logging.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/manual/source/logging.rst b/doc/manual/source/logging.rst index 7877e2306..97ac19754 100644 --- a/doc/manual/source/logging.rst +++ b/doc/manual/source/logging.rst @@ -320,7 +320,7 @@ How to add logging to your code Adding logging to your code is very simple: 1. Invoke the ``NS_LOG_COMPONENT_DEFINE (...);`` macro - outside of ``namespace ns3``. + outside of ``namespace ns3``. Create a unique string identifier (usually based on the name of the file and/or class defined within the file) and register it with a macro call @@ -337,7 +337,8 @@ Adding logging to your code is very simple: (The macro was carefully written to permit inclusion either within or outside of namespace ``ns3``, and usage will vary across the codebase, but - the original intent was to register this *outside* of namespace ``ns3``.) + the original intent was to register this *outside* of namespace ``ns3`` + at file global scope.) 2. Add logging statements (macro calls) to your functions and function bodies.