Magento 1.9 – Fatal Error Class Not Found

fatal errormagento-1.9

I got error in custom module. I am getting error like this:

Fatal error: Class 'Test_log_Adminhtml_Block_Log' not found in app/code/core/Mage/Core/Model/Layout.php on line 491

How to fix this?
xml file

        <blocks>
        <log>
            <class>Test_log_Block</class>
        </wsalogger>
       <log_adminhtml>
            <class>Test_log_Adminhtml_Block</class>
        </log_adminhtml>
    </blocks>

Best Answer

please change as follow

    <log_adminhtml>
        <class>Test_log_Block_Adminhtml</class>
    </log_adminhtml>