From e450b10c4ca4a8c32bbe2f77872f84993426fef4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 30 Oct 2012 17:20:55 +0000 Subject: bitbake: bitbake/server: Remove dead console log code This code is dead and doesn't do anything so lets remove it. (Bitbake rev: 8d45739f49618757a5d7d79782deda355e3981ec) Signed-off-by: Richard Purdie --- bitbake/bin/bitbake | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'bitbake/bin/bitbake') diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index cb5d84adbe..70099e4292 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -214,10 +214,6 @@ Default BBFILES are the .bb files in the current directory.""") if configuration.bind and configuration.servertype != "xmlrpc": sys.exit("FATAL: If '-B' or '--bind' is defined, we must set the servertype as 'xmlrpc'.\n") - # Save a logfile for cooker into the current working directory. When the - # server is daemonized this logfile will be truncated. - cooker_logfile = os.path.join(os.getcwd(), "cooker.log") - bb.msg.init_msgconfig(configuration.verbose, configuration.debug, configuration.debug_domains) @@ -246,7 +242,7 @@ Default BBFILES are the .bb files in the current directory.""") server.addcooker(cooker) server.saveConnectionDetails() - server.detach(cooker_logfile) + server.detach() # Should no longer need to ever reference cooker del cooker -- cgit v1.2.3-54-g00ecf