Package bm.core.log

Examples of bm.core.log.Log.warn()


                         Integer.toString( recordId )
                );
            }
            if( !fetchDeleted && data[Row.STATUS_BYTE] == Row.STATUS_DELETED )
            {
                log.warn( "Deleted row: " + recordId );
                ErrorLog.addError(
                        "Table",
                        "getRowFromStore",
                        new Object[] { new Integer( recordId ) },
                        tableInfo.getName() + ": status deleted",
View Full Code Here


    {
        final Log log = Index.log;

        if( !tableIndex )
        {
            log.warn( "not a table index" );
            return;
        }
        if( node == null )
        {
            log.warn( "node is null" );
View Full Code Here

            log.warn( "not a table index" );
            return;
        }
        if( node == null )
        {
            log.warn( "node is null" );
            return;
        }
        if( node.isLeaf() )
        {
            final int keyCount = node.getKeyCount();
View Full Code Here

                            keys.addElement( key.getKey() );
                        }
                    }
                    else
                    {
                        log.warn( "data is null" );
                    }
                }
                else
                {
                    log.warn( "key " + i + " is null" );
View Full Code Here

                        log.warn( "data is null" );
                    }
                }
                else
                {
                    log.warn( "key " + i + " is null" );
                }
            }
        }
        else
        {
View Full Code Here

                        keys.addElement( key.getKey() );
                    }
                }
                else
                {
                    log.warn( "data at parent index " + parentIndex + " is null" );
                }
            }
            else
            {
                log.warn( "key (parent index)" + parentIndex + " is null" );
View Full Code Here

                    log.warn( "data at parent index " + parentIndex + " is null" );
                }
            }
            else
            {
                log.warn( "key (parent index)" + parentIndex + " is null" );
            }
            System.gc();
            buildSortedList(
                    records,
                    keys,
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.