From 9bc95674dc818c4708bc6fcd19a6a9d5066417d3 Mon Sep 17 00:00:00 2001 From: Tim Nugent Date: Tue, 15 Aug 2023 14:14:28 +1000 Subject: [PATCH] Removed the action registration log message. --- CHANGELOG.md | 2 ++ Runtime/Commands/Actions.cs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 759be76f..1d19248f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Removed +- The Actions class will no longer log every single time a command is registered. + ## [2.3.1] 2023-07-07 ### Added diff --git a/Runtime/Commands/Actions.cs b/Runtime/Commands/Actions.cs index de6b8254..c02fd3a9 100644 --- a/Runtime/Commands/Actions.cs +++ b/Runtime/Commands/Actions.cs @@ -603,7 +603,6 @@ private static Converter CreateConverter(ParameterInfo parameter, int index) public static void AddRegistrationMethod(Action registerActions) { - Debug.Log($"Adding registration method {registerActions.Method.DeclaringType.FullName}.{registerActions.Method.Name}"); ActionRegistrationMethods.Add(registerActions); }