module Nucleus::Enums::ApplicationLogfileType

All types of logs that are distinguished by Nucleus.

Constants

API

The API log aggregates all messages that changed the application state, e.g. updating an application.

APPLICATION

The application log includes all messages of the application itself

BUILD

The build log shows the information of the recent build process(es).

ERROR

The error log shows all logged error messages

OTHER

All logs marked as other can’t be assigned to any of the other states

REQUEST

The request log shows all requests that were made to the application

SYSTEM

System logs aggregate all system relevant outputs, e.g. calling lifecycle operations on application instances

Public Class Methods

all() click to toggle source

List all types of log files. @return [Array<Symbol>] Symbols representing a log file type

# File lib/nucleus/core/enums/logfile_types.rb, line 23
def self.all
  constants
end