Zerotorescue@178: -- Loading time (in seconds) Zerotorescue@178: print("Data loaded in: " .. GetTime() - IMStartLoadTime .. " seconds."); Zerotorescue@178: IMStartLoadTime = nil; Zerotorescue@178: Zerotorescue@178: local currentMem = collectgarbage("count"); Zerotorescue@178: Zerotorescue@178: -- Memory usage for addon (in kbytes) Zerotorescue@178: print("Memory gained since start of loading: " .. (currentMem - IMStartLoadMemory) .. " kbytes."); Zerotorescue@178: IMStartLoadMemory = nil; Zerotorescue@178: Zerotorescue@178: -- Collect garbage Zerotorescue@178: collectgarbage("collect"); Zerotorescue@178: Zerotorescue@178: -- Memory usage for this addon after trash was emptied Zerotorescue@178: print("Memory gained since start of loading after garbage collection: " .. (currentMem - collectgarbage("count")) .. " kbytes.");