blob: 835f528267deeaadd81b7b96563784ad1e3c59e5 [file] [log] [blame]
// Copyright 2016 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/tonic/logging/dart_error.h"
#include "lib/ftl/logging.h"
namespace tonic {
namespace DartError {
const char kInvalidArgument[] = "Invalid argument.";
} // namespace DartError
bool LogIfError(Dart_Handle handle) {
if (Dart_IsError(handle)) {
FTL_LOG(ERROR) << Dart_GetError(handle);
return true;
}
return false;
}
} // namespace tonic