We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26d9135 commit 398a427Copy full SHA for 398a427
SimpleTaskSystemSPA_AngularJs_EntityFramework/SimpleTaskSystem.Application/Tasks/TaskAppService.cs
@@ -50,6 +50,8 @@ public void UpdateTask(UpdateTaskInput input)
50
51
public void CreateTask(CreateTaskInput input)
52
{
53
+ Logger.Info("Creating a new task with description: " + input.Description);
54
+
55
var task = new Task { Description = input.Description };
56
57
if (input.AssignedPersonId.HasValue)
0 commit comments