Commit 3fe6a5d0 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Only log the Action, as it's the same as ActionRequest.

parent 87fa854d
...@@ -1792,9 +1792,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package) ...@@ -1792,9 +1792,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
{ {
ComponentList *cl; ComponentList *cl;
TRACE("Examining Feature %s (Installed %i, Action %i, Request %i)\n", TRACE("Examining Feature %s (Installed %i, Action %i)\n",
debugstr_w(feature->Feature), feature->Installed, feature->Action, debugstr_w(feature->Feature), feature->Installed, feature->Action);
feature->ActionRequest);
LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry )
{ {
...@@ -1856,9 +1855,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package) ...@@ -1856,9 +1855,8 @@ UINT MSI_SetFeatureStates(MSIPACKAGE *package)
msi_component_set_state( component, INSTALLSTATE_LOCAL ); msi_component_set_state( component, INSTALLSTATE_LOCAL );
} }
TRACE("Result: Component %s (Installed %i, Action %i, Request %i)\n", TRACE("Result: Component %s (Installed %i, Action %i)\n",
debugstr_w(component->Component), component->Installed, debugstr_w(component->Component), component->Installed, component->Action);
component->Action, component->ActionRequest);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment