Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ReactiveUI/POCOObservableForProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public IObservable<IObservedChange<object, object>> GetNotificationForProperty(o
{
var type = sender.GetType();
if (!hasWarned.ContainsKey(type)) {
this.Log().Warn(
this.Log().Debug(
"{0} is a POCO type and won't send change notifications, WhenAny will only return a single value!",
type.FullName);
hasWarned[type] = true;
Expand Down