Cat.java

  1. package org.opentrafficsim.base.logger;

  2. import org.djutils.logger.LogCategory;

  3. /**
  4.  * Predefined categories for Category logging. <br>
  5.  * <br>
  6.  * Copyright (c) 2003-2020 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
  7.  * for project information <a href="https://www.simulation.tudelft.nl/" target="_blank">www.simulation.tudelft.nl</a>. The
  8.  * source code and binary code of this software is proprietary information of Delft University of Technology.
  9.  * @author <a href="https://www.tudelft.nl/averbraeck" target="_blank">Alexander Verbraeck</a>
  10.  */
  11. public final class Cat
  12. {
  13.     /** */
  14.     private Cat()
  15.     {
  16.         // Utility class
  17.     }

  18.     /** BASE project. */
  19.     public static final LogCategory BASE = new LogCategory("BASE");

  20.     /** CORE project. */
  21.     public static final LogCategory CORE = new LogCategory("CORE");

  22.     /** ROAD project. */
  23.     public static final LogCategory ROAD = new LogCategory("ROAD");

  24.     /** PARSER projects. */
  25.     public static final LogCategory PARSER = new LogCategory("PARSER");

  26. }