Skip to content

Commit 398a427

Browse files
committed
Write log in CreateTask method.
1 parent 26d9135 commit 398a427

File tree

1 file changed

+2
-0
lines changed
  • SimpleTaskSystemSPA_AngularJs_EntityFramework/SimpleTaskSystem.Application/Tasks

1 file changed

+2
-0
lines changed

SimpleTaskSystemSPA_AngularJs_EntityFramework/SimpleTaskSystem.Application/Tasks/TaskAppService.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ public void UpdateTask(UpdateTaskInput input)
5050

5151
public void CreateTask(CreateTaskInput input)
5252
{
53+
Logger.Info("Creating a new task with description: " + input.Description);
54+
5355
var task = new Task { Description = input.Description };
5456

5557
if (input.AssignedPersonId.HasValue)

0 commit comments

Comments
 (0)