NSISLog plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.)
m (→‎Plug-in free alternative: Optimize away a variable)
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== Download Link ==
<attach>Nsislog.zip</attach>
== Description ==
== Description ==
With this plugin you can write some text to a textfile at install time.
With this plugin you can write some text to a textfile at install time.
Line 20: Line 23:
McKenna
McKenna


Page author: [[User:joost|joost]]
== Plug-in free alternative ==
<highlight-nsis>
!include Util.nsh
!define LogLine "!insertmacro WriteLineToFile"
!macro WriteLineToFile file line
Push `${line}`
Push "${file}"
!insertmacro CallArtificialFunction WriteLineToFileHelper
!macroend
!macro WriteLineToFileHelper
Exch $0
Exch
Exch $1
FileOpen $0 $0 a
StrCmp $0 "" done
FileSeek $0 0 END
FileWrite $0 "$1$\r$\n"
FileClose $0
done:
Pop $1
Pop $0
!macroend
 
Section
${LogLine} "$INSTDIR\install.log" "Hello"
${LogLine} "$INSTDIR\install.log" "World"
SectionEnd
</highlight-nsis>
 
[[Category:Plugins]]

Latest revision as of 16:51, 15 August 2023

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

Plug-in free alternative

!include Util.nsh
!define LogLine "!insertmacro WriteLineToFile"
!macro WriteLineToFile file line
Push `${line}`
Push "${file}"
!insertmacro CallArtificialFunction WriteLineToFileHelper
!macroend
!macro WriteLineToFileHelper
Exch $0
Exch
Exch $1
FileOpen $0 $0 a
StrCmp $0 "" done
FileSeek $0 0 END
FileWrite $0 "$1$\r$\n"
FileClose $0
done:
Pop $1
Pop $0
!macroend
 
Section 
${LogLine} "$INSTDIR\install.log" "Hello"
${LogLine} "$INSTDIR\install.log" "World"
SectionEnd