Logging improvements

This commit is contained in:
2014-05-08 14:30:44 -04:00
parent ff0b2a140c
commit 979e73def9
3 changed files with 16 additions and 2 deletions
+7
View File
@@ -52,5 +52,12 @@ namespace MileageTraker.Web.ViewModels.User
user.FullName = FullName;
user.Email = Email;
}
public override string ToString()
{
return string.Format(
"FullName: {0}, UserName: {1}, email: {2}",
FullName, Username, Email);
}
}
}