# LogFacade

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.3.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

## Definition

```typescript
interface LogFacade {
  debug(message: string): void;
  error(message: string): void;
  info(message: string): void;
  warning(message: string): void;
}
```

## Methods

- [debug](/reference/api/typescript/aspire.hosting/logfacade/debug.md) -- `method` -- Writes a debug log message
    ```typescript
  debug(message: string): void
  ```
- [error](/reference/api/typescript/aspire.hosting/logfacade/error.md) -- `method` -- Writes an error log message
    ```typescript
  error(message: string): void
  ```
- [info](/reference/api/typescript/aspire.hosting/logfacade/info.md) -- `method` -- Writes an informational log message
    ```typescript
  info(message: string): void
  ```
- [warning](/reference/api/typescript/aspire.hosting/logfacade/warning.md) -- `method` -- Writes a warning log message
    ```typescript
  warning(message: string): void
  ```
