(Logging) Ensure we do not output unrequired spaces & colons when trace is not enabled 70/46470/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 20 Aug 2015 16:23:19 +0000 (17:23 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 20 Aug 2015 16:23:28 +0000 (17:23 +0100)
commitc9165568d85ad893a8656d658497f17797bd1351
tree4ba161e3d6db3c08fcb4bec8e615dc1bd97070cf
parent783137c838cc467f6b46158bf35deb72d0576bf0
(Logging) Ensure we do not output unrequired spaces & colons when trace is not enabled

Before: No Trace:
INFO: DALI: : MyDebug

Now: No Trace:
INFO: DALI: MyDebug

Before: Trace:
INFO: DALI: Entr: MyFunction()
INFO: DALI: :  MyDebug
INFO: DALI: Exit: MyFunction()

Now: Trace:
INFO: DALI: Entr: MyFunction()
INFO: DALI:     :  MyDebug
INFO: DALI: Exit: MyFunction()

Change-Id: I3a04b50154a4f23ca90cad5a7ad2ef26ae6cb1cf
dali/integration-api/debug.cpp