kibana/docs/development/core/server/kibana-plugin-server.logger.debug.md
Mikhail Shustov e1b831e77d
Route tags (#37344) (#38373)
* expose route info in KibanaRequest

* update mocks in test

* make tags readonly, getRouteInfo is private method

* add mocks for hapi internals

* mode deepFreeze to core utils level as it env agnostic

* freeze route props

* fix typo

* add tests for route options

* fix integration tests. deep_freeze was moved under core utils

* add comments, expose public types and regenerate docs

* address comment. remove unnecessary async in route handlers

* make routeSchema optional instead of union with undefined

* @skaapgif improvements

* update docs
2019-06-07 09:39:33 +02:00

645 B

Home > kibana-plugin-server > Logger > debug

Logger.debug() method

Log messages useful for debugging and interactive investigation

Signature:

debug(message: string, meta?: LogMeta): void;

Parameters

Parameter Type Description
message string The log message
meta LogMeta

Returns:

void