mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-28 16:42:04 +00:00
45 lines
924 B
Markdown
45 lines
924 B
Markdown
|
---
|
||
|
title: "Logging"
|
||
|
description: Nuxt Kit provides a set of utilities to help you work with logging. These functions allow you to log messages with extra features.
|
||
|
---
|
||
|
|
||
|
# Logging
|
||
|
|
||
|
[source code](https://github.com/nuxt/nuxt/blob/main/packages/kit/src/logger.ts)
|
||
|
|
||
|
Nuxt provides a logger instance that you can use to log messages with extra features. `useLogger` allows you to get a logger instance.
|
||
|
|
||
|
## `useLogger`
|
||
|
|
||
|
Returns a logger instance. It uses [consola](https://github.com/unjs/consola) under the hood.
|
||
|
|
||
|
### Type
|
||
|
|
||
|
```ts
|
||
|
function useLogger (tag?: string): ConsolaInstance
|
||
|
```
|
||
|
|
||
|
### Parameters
|
||
|
|
||
|
#### `tag`
|
||
|
|
||
|
**Type**: `string`
|
||
|
|
||
|
***Optional**: `true`
|
||
|
|
||
|
A tag to prefix all log messages with.
|
||
|
|
||
|
### Examples
|
||
|
|
||
|
```ts
|
||
|
import { defineNuxtModule, useLogger } from '@nuxt/kit'
|
||
|
|
||
|
export default defineNuxtModule({
|
||
|
setup(options, nuxt) {
|
||
|
const logger = useLogger('my-module')
|
||
|
|
||
|
logger.info('Hello from my module!')
|
||
|
}
|
||
|
})
|
||
|
```
|