UNPKG
humanlayer
Version:
alpha (0.7.7-alpha.1)
latest (0.17.2-npm)
0.17.2-npm
0.11.1
0.11.0
0.10.0
0.9.0
0.8.0
0.7.7
0.7.7-alpha.1
0.7.6
0.7.6-alpha.1
0.7.5
0.7.5-alpha.1
0.7.4
0.7.4-alpha.2
0.7.4-alpha.1
0.7.3
0.7.2
0.7.2-rc2
0.7.2-rc1
0.7.1
0.7.1-rc2
0.7.1-rc1
0.7.0
0.7.0-rc1
0.6.2-rc1
0.6.1
0.6.1-rc2
0.6.1-rc1
0.6.0
0.5.8
0.5.7
0.5.6
0.5.4-rc1
0.5.3
typescript client for humanlayer.dev
github.com/humanlayer/humanlayer
humanlayer/humanlayer
humanlayer
/
src
/
logger.ts
13 lines
(12 loc)
•
243 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
//
TODO:
maybe use a real lib
export
const
logger = {
debug
:
(
...
args
:
any
[]
) =>
{
console
.
debug
(...args) },
info
:
(
...
args
:
any
[]
) =>
{
console
.
info
(...args) },
error
:
(
...
args
:
any
[]
) =>
{
console
.
error
(...args) }, }