Simplify log format for debugging
Whole [package.module] name in log format produces long message which
may not really helpful for debugging.
Only use [module] could make log more neat and easy to review.
Original: 2018-10-04 11:47:00,256 |DEBUG|acloud.create.avd_spec:191|xxx
After: 2018-10-04 11:47:00,256 |DEBUG|avd_spec:191|xxx
Bug: 117247405
Test: m acloud && acloud create --local_image
Change-Id: Ic1b9b5389892a1fb95e4a9390f37a212be18924d
diff --git a/public/acloud_main.py b/public/acloud_main.py
index ce408fb..f548789 100644
--- a/public/acloud_main.py
+++ b/public/acloud_main.py
@@ -89,7 +89,7 @@
from acloud.setup import setup
from acloud.setup import setup_args
-LOGGING_FMT = "%(asctime)s |%(levelname)s| %(name)s:%(lineno)s| %(message)s"
+LOGGING_FMT = "%(asctime)s |%(levelname)s| %(module)s:%(lineno)s| %(message)s"
ACLOUD_LOGGER = "acloud"
# Commands