Logbox 1.8 Standalone missing system.core.dynamic.MixerUtil

Hi All,

I’m using logbox 1.8 in standalone mode within a FW/1 app. Long story short, there is a reference within system.core.util.Util.cfc on line 17 to a CFC that doesn’t exist.

`

if( structKeyExists(variables, "mixerUtil") ){ return variables.mixerUtil; } variables.mixerUtil = createObject("component","logbox.system.core.dynamic.MixerUtil").init(); return variables.mixerUtil; `

There is no ‘logbox.system.core.dynamic.MixerUtil’ CFC included. To fix this I found one in the coldbox framework, created the appropriate folder and dropped it in and I’m in business. But I’m not sure if I’m doing something wrong or if there is a problem with download? I call the following code in Application.cfc in the ‘onApplicationStart’ method to configure logbox:

`

//Using config object data = createObject("component","LogboxConfig"); config = createObject("component","/logbox.system.logging.config.LogBoxConfig").init(CFCConfig=data); logBox = createObject("component","/logbox.system.logging.LogBox").init(config);

application.logger = logBox;

`

Thoughts?

Thanks.
Brett

Something might be wrong with the build script for LogBox. The LogBox code is part of the ColdBox repo on GitHub and we have an Ant script that separates out the logging bits and core libs and repackages them together. Can you zip up your LogBox folder and send it so I can see what’s in it. Also, redownload and confirm that the latest download doesn’t have it either please.

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

HI Brad,

I downloaded v1.8 of Logbox from http://www.coldbox.org/download and verified that there is no dynamic folder with a MixUtil cfc in it.

Thanks.
Brett

Sounds like a bug in the build process then. You can borrow that folder from the ColdBox download since it’s the same code. In the mean time I’d recommend just switching over to the full ColdBox platform :slight_smile:

Also, please enter a ticket so we can get the LogBox download fixed.

http://blog.coldbox.org/blog/how-to-create-a-jira-account-and-enter-coldbox-tickets

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com