blob: d04de5b2ac5da0bb85ad1e8de68fcb986ab87385 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 See4sys and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* See4sys - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.examples.hummingbird.codegen.xpand.extensions;
public class LogUtil {
public static void log(Object obj) {
System.out.println(obj != null ? obj.toString() : "<null>"); //$NON-NLS-1$
}
}