blob: 9a5907b944c7a0bdf4002edf14d7ce6d3f95e8c2 [file] [log] [blame]
// Copyright 2020 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>
int main(int /* argc */, char* /* argv */[]) {
brillo::OpenLog("system_proxy_worker", true /* log_pid */);
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty);
return 0;
}