Addse debug statements for RunRouteAction

This commit is contained in:
Neil Dorin
2020-08-10 12:01:04 -06:00
parent e5d4ba48fb
commit 1b7dd2dd2a

View File

@@ -409,11 +409,15 @@ namespace PepperDash.Essentials
{ {
if (string.IsNullOrEmpty(sourceListKey)) if (string.IsNullOrEmpty(sourceListKey))
{ {
Debug.Console(1, this, "No sourceListKey present. RunRouteAction assumes default source list.");
RunRouteAction(routeKey, new Action(() => { })); RunRouteAction(routeKey, new Action(() => { }));
} }
else else
{
Debug.Console(1, this, "sourceListKey present but not yet implemented");
throw new NotImplementedException(); throw new NotImplementedException();
} }
}
/// <summary> /// <summary>
/// ///