Set default value for tempest log file

This commit changes the default value for tempest's logging output.
Since tempest is intended to be run solely through a test runner
logging to stdout can get complicated since tempest doesn't really
own stdout. This patch changes the default to log to tempest.log in
the cwd where tempest is run which should be a better behavior for
running tempest.

Change-Id: I1017a1714181a78b5da9c47e811db63b4edce14a
diff --git a/tempest/config.py b/tempest/config.py
index 26823de..dbef88c 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -1364,6 +1364,7 @@
         _CONF.set_default('alt_domain_name',
                           self.auth.default_credentials_domain_name,
                           group='identity')
+        logging.tempest_set_log_file('tempest.log')
 
     def __init__(self, parse_conf=True, config_path=None):
         """Initialize a configuration from a conf directory and conf file."""