blob: dfb43a2f61c0c7362e388adaed7b11cf3aaa3d13 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <base/logging.h>
#include <brillo/syslog_logging.h>
#include "ml/process.h"
int main(int argc, char* argv[]) {
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty);
return ml::Process::GetInstance()->Run(argc, argv);
}