NSISLog plug-in: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Adding new author and category links.) |
(Attached "Nsislog.zip" file.) |
||
Line 1: | Line 1: | ||
{{PageAuthor|joost}} | {{PageAuthor|joost}} | ||
== Download Link == | |||
<attach>Nsislog.zip</attach> | |||
== Description == | == Description == |
Revision as of 18:10, 17 July 2005
Author: joost (talk, contrib) |
Download Link
Nsislog.zip (23 KB)
Description
With this plugin you can write some text to a textfile at install time.
The Script
Section "Log test" ... do something ... nsislog::log "$INSTDIR\install.log" "before registering my dll" RegDll "$INSTDIR\mydll.dll" nsislog::log "$INSTDIR\install.log" "after registering my dll" ... do something more ... SectionEnd
At any time you can use different files for your logs. After the call, your text is written and the file is closed.
Note: Very useful to debug a installation without a compilation of the NSIS compiler.
Hope its useful.
McKenna