msi: Downgrade a few messages to WARN.

This commit is contained in:
James Hawkins 2008-04-02 18:30:37 -05:00 committed by Alexandre Julliard
parent a7d02a1f08
commit c48daf93bb
2 changed files with 3 additions and 3 deletions

View File

@ -1053,7 +1053,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, UINT script,
if (!handled)
{
FIXME("unhandled msi action %s\n",debugstr_w(action));
WARN("unhandled msi action %s\n",debugstr_w(action));
rc = ERROR_FUNCTION_NOT_CALLED;
}
@ -1077,7 +1077,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action, UINT scrip
if (!handled)
{
FIXME("unhandled msi action %s\n",debugstr_w(action));
WARN("unhandled msi action %s\n",debugstr_w(action));
rc = ERROR_FUNCTION_NOT_CALLED;
}

View File

@ -2917,7 +2917,7 @@ static MSIRECORD *msi_get_dialog_record( msi_dialog *dialog )
rec = MSI_QueryGetRecord( package->db, query, dialog->name );
if( !rec )
ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
WARN("query failed for dialog %s\n", debugstr_w(dialog->name));
return rec;
}