trevordevore / levure

Application development framework for LiveCode
MIT License
32 stars 14 forks source link

Add log monitor stack #76

Closed trevordevore closed 7 years ago

trevordevore commented 7 years ago

This stack will log messages to a field in a floating palette. Call loggerOpenLogMonitor to open it. Example:

command InitializeApplication
  if levureBuildProfile() is "test" then
    loggerOpenLogMonitor
  end if

  ...
InitializeApplication