Interface LoggingContext


public interface LoggingContext
Provides Config in current context.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(String message)
    Logs a debug-level message that is generally hidden from end-users.
    void
    debug(String format, Object... args)
    Logs a debug-level message that is generally hidden from end-users.
    void
    error(String message)
    Logs a fatal condition.
    void
    error(String format, Object... args)
    Logs a fatal condition.
    void
    info(String message)
    Logs an informational message that is generally printed to stdout during resource operations.
    void
    info(String format, Object... args)
    Logs an informational message that is generally printed to stdout during resource operations.
    void
    warn(String message)
    Logs a warning to indicate that something went wrong, but not catastrophically so.
    void
    warn(String format, Object... args)
    Logs a warning to indicate that something went wrong, but not catastrophically so.
  • Method Details

    • debug

      void debug(String message)
      Logs a debug-level message that is generally hidden from end-users.
    • debug

      void debug(String format, Object... args)
      Logs a debug-level message that is generally hidden from end-users.
    • info

      void info(String message)
      Logs an informational message that is generally printed to stdout during resource operations.
    • info

      void info(String format, Object... args)
      Logs an informational message that is generally printed to stdout during resource operations.
    • warn

      void warn(String message)
      Logs a warning to indicate that something went wrong, but not catastrophically so.
    • warn

      void warn(String format, Object... args)
      Logs a warning to indicate that something went wrong, but not catastrophically so.
    • error

      void error(String message)
      Logs a fatal condition. Consider raising an exception after calling Error to stop the Pulumi program.
    • error

      void error(String format, Object... args)
      Logs a fatal condition. Consider raising an exception after calling Error to stop the Pulumi program.