package logs const ( ApplicationStarted = "application started" ApplicationStopped = "application stopped" StoppingApplication = "stopping application" ServiceIsRunning = "service is running" ServiceCouldntStartOnConfiguredPort = "service couldn't start on configured port" ServiceHasntStartedSinceItsDisabled = "service hasn't started since it's disabled" ShuttingDownService = "shutting down service" CantGracefullyShutDownService = "can't gracefully shut down service, force stop" CantShutDownService = "can't shut down service" SIGHUPConfigReloadStarted = "SIGHUP config reload started" FailedToReloadConfigBecauseItsMissed = "failed to reload config because it's missed" FailedToReloadConfig = "failed to reload config" LogLevelWontBeUpdated = "log level won't be updated" SIGHUPConfigReloadCompleted = "SIGHUP config reload completed" )