First, to turn on logging you would just do the following if you want SF to name the files for your:Dim mg As New MicroFour.StrataFrame.DBEngine.SQL.DatabaseMigrator("MyConnectionSTring", Me)
mg.LogFilePathAndFileName = ""
mg.EnableLogging = True
If you want to name the path and file name yourself, set the LogFilePathAndFileName. Otherwise, SF will create the name in the location of the PKG file and will have a naming schema like this:
PackageFileName_Results.log (First time)
PackageFileName_ResultsN.log (N will be an auto-incremented number)
In our medical software we send the results log as well after an installation, we just get all of the files in that location for that name and send them. Once sent, we move or rename those files so that they don't get sent again when an install is performed later.