Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2318)

Unified Diff: appengine/swarming/swarming_bot/__main__.py

Issue 1373133004: Fixes and add smoke test: hard timeout on isolated task. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: . Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/local_smoke_test.py ('k') | appengine/swarming/swarming_bot/bot_code/task_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/swarming_bot/__main__.py
diff --git a/appengine/swarming/swarming_bot/__main__.py b/appengine/swarming/swarming_bot/__main__.py
index 0510eeb398eb44bee9ae5686804f061d6dc89e22..b40c43bb7c8bd2f45b8a7b6b2176bf38681ea0f3 100644
--- a/appengine/swarming/swarming_bot/__main__.py
+++ b/appengine/swarming/swarming_bot/__main__.py
@@ -60,7 +60,6 @@ def CMDtask_runner(args):
def CMDstart_bot(args):
"""Starts the swarming bot."""
logging_utils.prepare_logging(os.path.join('logs', 'swarming_bot.log'))
- logging_utils.set_console_level(logging.DEBUG)
logging.info(
'importing bot_main: %s, %s', THIS_FILE, zip_package.generate_version())
from bot_code import bot_main
@@ -73,7 +72,6 @@ def CMDstart_slave(args):
"""Ill named command that actually sets up the bot then start it."""
# TODO(maruel): Rename function.
logging_utils.prepare_logging(os.path.join('logs', 'bot_config.log'))
- logging_utils.set_console_level(logging.DEBUG)
parser = optparse.OptionParser()
parser.add_option(
« no previous file with comments | « appengine/swarming/local_smoke_test.py ('k') | appengine/swarming/swarming_bot/bot_code/task_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698