1
0
Fork 0
mirror of https://github.com/actions/toolkit.git synced 2025-06-08 06:27:02 +09:00

Add info for completeness (#111)

* Add info for completeness

* Linting

* Missing import
This commit is contained in:
Danny McCormick 2019-09-09 11:46:48 -04:00 committed by GitHub
parent a6e7249776
commit ef4525e9dd
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
import {issue, issueCommand} from './command'
import * as os from 'os'
import * as path from 'path'
/**
@ -131,6 +132,14 @@ export function warning(message: string): void {
issue('warning', message)
}
/**
* Writes info to log with console.log.
* @param message info message
*/
export function info(message: string): void {
process.stdout.write(message + os.EOL)
}
/**
* Begin an output group.
*