Background for Skyrim SE
Member of the Debug script
voidfunctionStopStackProfiling()NativeGlobal

Description

Wiki Description

Stops profiling a single Papyrus stack. The profile files are stored in "<game folder>/Logs/Script/Profiling". This will also cycle the older profiling logs (so log 0 becomes 1, 1 becomes 2, etc). If the stack is not currently profiled nothing will change.

Documentation Comment

Stop profiling the calling stack - setting doesn't persist across saves
Will do nothing on release console builds, and if the Papyrus:bEnableProfiling ini setting is off


Caveats

CK Wiki - Notes

Profiling requires the "bEnableProfiling" flag in the "[Papyrus]" section of the ini file to be set to 1. Consoles will never profile in release final builds.


Examples

; Lots of slow script here
; Stops profiling this current stack
Debug.StopStackProfiling()

Auto-Generated Example

Debug.StopStackProfiling()

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.