view DependencyLoader/start.lua @ 18:e7995d599184 tip

updated pkgmeta fix the inversion in addon:Enable added support for late-loading
author mckenziemc
date Tue, 21 Dec 2010 00:23:57 -0800
parents f825ccf94a89
children
line wrap: on
line source
--	start.lua
--	Initializes components of DependencyLoader


local addonName, addonTable = ...


--	prepare output functions
local LibPrint = LibStub("LibPrint-1.0")

addonTable.printStream = LibPrint:NewStream("DependencyLoader", "DpLdr", print)
addonTable.debugStream = LibPrint:NewStream("DependencyLoader", "DpLdr", "mcm")

function addonTable.print(...) addonTable.printStream:Print(...) end
function addonTable.debug(...) addonTable.debugStream:Print(...) end


addonTable.debug("loading", addonName)