blob: ba2f0b95394d71b21df847dd0dcf8296089a4581 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 <lib/syslog/cpp/log_settings.h>
#include <lib/syslog/cpp/macros.h>
#include "src/intl/intl_services/run.h"
int main(int argc, const char** argv) {
const zx_status_t status = intl::serve_intl_profile_provider(argc, argv);
FX_LOGS(INFO) << "Terminated with status: " << zx_status_get_string(status);
exit(status);
}