Lines Matching refs:logger

56 logger = scriptutils.logger_create(PROGNAME, stream=sys.stdout)  variable
66 logger.error("This script requires Python 3.4 or greater")
67 logger.error("You have Python %s.%s" %
174 logger.setLevel(logging.DEBUG)
176 logger.setLevel(logging.ERROR)
179 logger.debug("--url and --filename detected. Ignoring --base-url "
192 logger.debug("milestone regex: %s" % m)
194 logger.debug("release[distro]: %s" % m.group('distro'))
195 logger.debug("release[version]: %s" % m.group('version'))
196 logger.debug("release[milestone]: %s" % m.group('milestone'))
198 logger.error("Milestone installers require --build-date")
220 logger.info("Fetching buildtools installer")
225 logger.error("Could not download file from %s" % buildtools_url)
230 logger.info("Fetching buildtools installer checksum")
242 logger.error("Could not download file from %s" % check_url)
248 logger.debug("checksum regex match: %s" % m)
249 logger.debug("checksum: %s" % m.group('checksum'))
250 logger.debug("path: %s" % m.group('path'))
251 logger.debug("filename: %s" % m.group('filename'))
253 logger.error("Filename does not match name in checksum")
261 logger.info("Checksum success")
263 logger.error("Checksum %s expected. Actual checksum is %s." %
268 logger.info("Making installer executable")
271 logger.debug(os.stat(tmpbuildtools))
280 logger.error("Could not run buildtools installer")
284 logger.info("Setting up the environment")
290 logger.debug("export regex: %s" % match)
293 logger.debug("env_var: %s" % env_var)
295 logger.debug("env_val: %s" % env_val)
299 logger.info("Testing installation")
302 logger.debug("extended regex: %s" % m)
304 logger.info("Ignoring --with-extended-buildtools as filename "
310 logger.debug("install_dir: %s" % install_dir)
312 logger.debug("cmd: %s" % cmd)
313 logger.debug("tool: %s" % tool)
316 logger.debug("proc.args: %s" % proc.args)
317 logger.debug("proc.communicate(): output %s" % output)
318 logger.debug("proc.communicate(): errors %s" % errors)
320 logger.debug("which %s: %s" % (tool, which_tool))
323 logger.error("Something went wrong: %s not found in %s" %
326 logger.error("Something went wrong: installation failed")
328 logger.info("Installation successful. Remember to source the "