Ken Turner | edb9393 | 2018-02-14 05:27:31 +1100 | [diff] [blame] | 1 | // Copyright 2018 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include <base/logging.h> |
| 6 | #include <brillo/syslog_logging.h> |
| 7 | |
Honglin Yu | 7b6c119 | 2020-09-16 10:07:17 +1000 | [diff] [blame] | 8 | #include "ml/process.h" |
Ken Turner | edb9393 | 2018-02-14 05:27:31 +1100 | [diff] [blame] | 9 | |
| 10 | int main(int argc, char* argv[]) { |
alanlxl | a906513 | 2020-08-13 10:22:41 +1000 | [diff] [blame] | 11 | brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty); |
alanlxl | a906513 | 2020-08-13 10:22:41 +1000 | [diff] [blame] | 12 | |
Honglin Yu | 7b6c119 | 2020-09-16 10:07:17 +1000 | [diff] [blame] | 13 | return ml::Process::GetInstance()->Run(argc, argv); |
Ken Turner | edb9393 | 2018-02-14 05:27:31 +1100 | [diff] [blame] | 14 | } |