/usr/share/boost-build/util/logger.py is in libboost1.54-tools-dev 1.54.0-4ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # Copyright Pedro Ferreira 2005. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
import sys
class NullLogger:
def __init__ (self):
self.indent_ = ''
def log (self, source_name, *args):
if self.on () and self.interesting (source_name):
self.do_log (self.indent_)
for i in args:
self.do_log (i)
self.do_log ('\n')
def increase_indent (self):
if self.on ():
self.indent_ += ' '
def decrease_indent (self):
if self.on () and len (self.indent_) > 4:
self.indent_ = self.indent_ [-4:]
def do_log (self, *args):
pass
def interesting (self, source_name):
return False
def on (self):
return True
class TextLogger (NullLogger):
def __init__ (self):
NullLogger.__init__ (self)
def do_log (self, arg):
sys.stdout.write (str (arg))
def interesting (self, source_name):
return True
def on (self):
return True
|