blob: a4d78184266394eb04b69902ca376c6cb5792214 [file] [log] [blame]
package com.intellij.remoteServer.runtime.log;
import com.intellij.execution.filters.HyperlinkInfo;
import com.intellij.execution.process.ProcessHandler;
import org.jetbrains.annotations.NotNull;
/**
* @author nik
*/
public interface LoggingHandler {
void print(@NotNull String s);
void printHyperlink(@NotNull String url);
void printHyperlink(@NotNull String text, HyperlinkInfo info);
void attachToProcess(@NotNull ProcessHandler handler);
}