blob: b2a2597770d76f36485d76680a35b46c071a3831 [file] [log] [blame]
// Copyright 2017 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.
library fuchsia.modular;
// ComponentActionLog allows a component to log actions it implements as they
// performed by the user.
interface ComponentActionLog {
1: LogAction(string method, string parameters);
};