Soweit ich wiess, geht das nicht. Du kannst es ja gern im CodeSite Forum mal anregen (oder Mail an Ray). Alternativ könntest Du als Ausgabe den FileViewer definieren, das geht so :
Code:
var
Dest : TCodeSiteDestination;
begin
CodeSiteManager.DefaultDestination.Clear;
CodeSiteManager.DefaultDestination.Viewer.Active := True;
If cbFileLogger.Checked then
begin
Dest := TCodeSiteDestination.Create( Self );
// Dest.Viewer.Active := True; // wenn man anzeigen UND ein File-Log schreiben will
Dest.LogFile.Active := True;
Dest.LogFile.FilePath := edPath.Text;
Dest.LogFile.FileName := edFileName.Text;
Dest.LogFile.Compressed := cbCompressed.Checked;
Dest.LogFile.LogByDate := True;
Dest.LogFile.LogByDateFormat := 'yyyymmdd';
CodeSiteManager.DefaultDestination := Dest;
end;
end;