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
@@ -46,5 +46,12 @@ namespace MileageTraker.Web.ViewModels.User
Mapper.Map(this, user);
return user;
}
public override string ToString()
{
return string.Format(
"FullName: {0}, UserName: {1}, email: {2}",
FullName, Username, Email);
}
}
}