* Show an information message in the remote console and log to file. * * @param message The message to show.
(message: string)
| 741 | * @param message The message to show. |
| 742 | */ |
| 743 | info(message: string): void { |
| 744 | if (this.logToConsole) { |
| 745 | this.connection.console.info(message); |
| 746 | } |
| 747 | this.logger.msg(message, ts.server.Msg.Info); |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * Start listening on the input stream for messages to process. |
no test coverage detected