Skip to main content
Inspiring
October 18, 2024
Question

SOLVED - SDK: LrLogger not working in Lightroom 14

  • October 18, 2024
  • 1 reply
  • 374 views

I wrote a little plug-in which just should write something to the LrLogger file.
Nothing gets written on my Windows 10 machine.

 

 

 

local logFilename = LOC "LuaVersionTest"
local myLogger = import 'LrLogger'( logFilename )
myLogger:enable( "logfile" )
local logPath

function showLuaVesion()
	myLogger:info( "Version:", _VERSION)
	myLogger:info(_VERSION)
end

showLuaVesion()

 

 

 

 

SOLVED

In the new SDK the log path has changed: see We're excited to announce the MAX release of Lightroom Classic SDK 14.0! 

 

Logs interface Note: We have changed the log file location for the LrLogger interface. The timestamps are no longer appended to the folders. The updated locations are:
Win: C:\Users\<user>\AppData\Local\Adobe\Lightroom\Logs\LrClassicLogs
Mac: /Users/<user>/Library/Logs/Adobe/Lightroom/LrClassicLogs/

 

This topic has been closed for replies.

1 reply

Inspiring
October 21, 2024

AAAAAARRRGGHHH!!!