Skip to content

Logging

Anastasia Laczko edited this page Jun 11, 2021 · 3 revisions

Introduction

Logging is done through SLF4J, and is used for debugging.

There are several debugging levels which filter the type of logs you see.

Usage

Set logging preferences in logging.properties.

Add logging to a class:

public class ExampleClass {
  private static final Logger logger = LoggerFactory.getLogger(ExampleClass.class);

  public ExampleClass () {
    // example of logging something
    logger.info("This is how you log something");
  }
}

See slf4j's Logger for logging options.

Table of Contents

Home

How to Play

Introduction

Game Features

Main Character

Enemies
The Final Boss

Landscape Objects

Shop
Inventory
Achievements
Camera

Crystal

Infrastructure

Audio

User Interfaces Across All Pages
Juicy UI
User Interfaces Buildings
Guidebook
[Resource Management](Resource-Management)
Map
Day and Night Cycle
Unified Grid System (UGS)
Polishing

Game Engine

Getting Started

Entities and Components

Service Locator

Loading Resources

Logging

Unit Testing

Debug Terminal

Input Handling

UI

Animations

Audio

AI

Physics

Game Screens and Areas

Terrain

Concurrency & Threading

Settings

Troubleshooting

MacOS Setup Guide

Clone this wiki locally