npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mcp-abap-adt/logger

v0.1.4

Published

Logger interface and implementations for MCP ABAP ADT packages

Readme

@mcp-abap-adt/logger

Logger interface and implementations for MCP ABAP ADT packages.

Installation

npm install @mcp-abap-adt/logger

For structured logging with Pino (optional):

npm install pino pino-pretty

Usage

DefaultLogger (Synchronous)

DefaultLogger provides synchronous logging with icons and level prefixes, ideal for tests and CLI tools:

import { defaultLogger, DefaultLogger, LogLevel } from '@mcp-abap-adt/logger';

// Use default logger singleton
defaultLogger.info('Hello, world!');
defaultLogger.debug('Debug message');
defaultLogger.error('Error message');
defaultLogger.warn('Warning message');

// Create custom logger instance with specific log level
const logger = new DefaultLogger(LogLevel.DEBUG);
logger.info('Test info');  // Output: [INFO] ℹ️ Test info
logger.debug('Test debug'); // Output: [DEBUG] 🐛 Test debug

PinoLogger (Asynchronous)

PinoLogger provides structured logging using Pino, ideal for server applications:

import { PinoLogger, LogLevel } from '@mcp-abap-adt/logger';

// Create Pino logger (falls back to DefaultLogger if pino is not installed)
const logger = new PinoLogger(LogLevel.DEBUG);
logger.info('Server started');  // Output: ℹ️ Server started (with pino-pretty formatting)
logger.debug('Debug info');
logger.error('Error occurred');
logger.warn('Warning message');

Note: PinoLogger uses async transport, so logs may appear after test completion in Jest. This is expected behavior for server use.

Log Levels

Log levels are defined in @mcp-abap-adt/interfaces and controlled by AUTH_LOG_LEVEL environment variable:

import { LogLevel } from '@mcp-abap-adt/interfaces';

// LogLevel enum values:
// LogLevel.ERROR = 0
// LogLevel.WARN = 1
// LogLevel.INFO = 2
// LogLevel.DEBUG = 3

Environment variable values:

  • error - only errors
  • warn - errors and warnings
  • info - errors, warnings, and info (default)
  • debug - all messages
export AUTH_LOG_LEVEL=debug

For backward compatibility, DEBUG_AUTH_LOG=true also sets level to debug.

Logger Interface

All logger implementations implement the ILogger interface from @mcp-abap-adt/interfaces:

import type { ILogger } from '@mcp-abap-adt/interfaces';

interface ILogger {
  info(message: string, meta?: any): void;
  debug(message: string, meta?: any): void;
  error(message: string, meta?: any): void;
  warn(message: string, meta?: any): void;
}

// Create custom logger
class MyCustomLogger implements ILogger {
  info(message: string, meta?: any): void {
    // Custom implementation
  }
  debug(message: string, meta?: any): void {
    // Custom implementation
  }
  error(message: string, meta?: any): void {
    // Custom implementation
  }
  warn(message: string, meta?: any): void {
    // Custom implementation
  }
}

Output Format

DefaultLogger output format:

  • [INFO] ℹ️ message
  • [DEBUG] 🐛 message
  • [ERROR] 💥 message
  • [WARN] ⚠️ message

PinoLogger output format (with pino-pretty):

  • Structured JSON in production
  • Pretty formatted with colors and icons in development (NODE_ENV !== 'production')

License

MIT