Hi all,

I'm currently logging "everything" using the following flags:

const DTF.InstallLogModes logEverything = DTF.InstallLogModes.FatalExit |

DTF.InstallLogModes.Error |

DTF.InstallLogModes.Warning |

DTF.InstallLogModes.User |

DTF.InstallLogModes.Info |

DTF.InstallLogModes.ResolveSource |

DTF.InstallLogModes.OutOfDiskSpace |

DTF.InstallLogModes.ActionStart |

DTF.InstallLogModes.ActionData |

DTF.InstallLogModes.CommonData |

DTF.InstallLogModes.Progress |

DTF.InstallLogModes.Initialize |

DTF.InstallLogModes.Terminate |

DTF.InstallLogModes.ShowDialog;

DTF.Installer.SetInternalUI(DTF.InstallUIOptions.Silent);
var handler = new DTF.ExternalUIRecordHandler(ProcessMessage);
DTF.Installer.SetExternalUI(handler, logEverything);
DTF.Installer.EnableLog(logEverything, logPath, true, true);
DTF.Installer.InstallProduct(installerPath, commandLine);

This has the effect of writing an enormous number of events to the log
file.

For example, I'm seeing thousands of these:

MSI (s) (14:A0) [11:33:50:764]: Component:
comp_27E5179987044690962CE98B3F95FD72; Installed: Local;   Request: Null;
Action: Null;   Client State: Local
MSI (c) (4C:8C) [11:34:17:869]: Creating MSIHANDLE (592) of type 790531 for
thread 8076
MSI (c) (4C:8C) [11:34:17:893]: Closing MSIHANDLE (592) of type 790531 for
thread 8076

What are (s) and (c) and how do I disable those extremely verbose messages
in the log? I need to keep the Progress events.

Thanks,
Mark



--
Mark Richman
(954) 234-9049 <1-954-234-9049>
m...@markrichman.com | http://markrichman.com
https://linkedin.com/in/mrichman
------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to