Lines Matching +full:packages +full:- +full:dir
3 # Use of this source code is governed by a BSD-style license that can be
25 def __init__(self, logs_dir: Optional[str]) -> None:
35 self._scoped_ffx_log = ScopedFfxConfig('log.dir', self._logs_dir)
40 # log.dir change always requires the restarting of the daemon.
45 # restart the daemon to ensure the change of log.dir taking effect.
51 def is_logging_enabled(self) -> bool:
56 def add_log_process(self, process: subprocess.Popen) -> None:
62 def open_log_file(self, log_file_name: str) -> TextIO:
92 target_id: Optional[str] = None) -> None:
99 pkg_paths: Path to the packages
120 log_cmd = ['log', '--raw', '--no-color']
136 """Stand-alone function for fetching system logs and print to terminal.
137 Runs until the process is killed or interrupted (i.e. user presses CTRL-C).
144 parser.add_argument('--packages',
146 help='Name of the packages to symbolize.')
148 if manager_args.packages and not manager_args.out_dir:
149 raise ValueError('--out-dir must be specified to symbolize packages.')
151 if manager_args.packages:
152 for package in manager_args.packages: