File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ netlify logs
23
23
24
24
| Subcommand | description |
25
25
| :--------------------------- | :-----|
26
- | [ ` logs:deploy ` ] ( /commands/logs#logsdeploy ) | (Beta) Stream the logs of deploys currently being built to the console |
27
- | [ ` logs:function ` ] ( /commands/logs#logsfunction ) | (Beta) Stream netlify function logs to the console |
26
+ | [ ` logs:deploy ` ] ( /commands/logs#logsdeploy ) | Stream the logs of deploys currently being built to the console |
27
+ | [ ` logs:function ` ] ( /commands/logs#logsfunction ) | Stream netlify function logs to the console |
28
28
29
29
30
30
** Examples**
@@ -38,7 +38,7 @@ netlify logs:function my-function
38
38
---
39
39
## ` logs:deploy `
40
40
41
- (Beta) Stream the logs of deploys currently being built to the console
41
+ Stream the logs of deploys currently being built to the console
42
42
43
43
** Usage**
44
44
@@ -55,7 +55,7 @@ netlify logs:deploy
55
55
---
56
56
## ` logs:function `
57
57
58
- (Beta) Stream netlify function logs to the console
58
+ Stream netlify function logs to the console
59
59
60
60
** Usage**
61
61
Original file line number Diff line number Diff line change 2
2
title : Netlify CLI serve command
3
3
sidebar :
4
4
label : serve
5
- description : (Beta) Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
5
+ description :
6
+ Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild
7
+ your site then you must exit and run `serve` again.
6
8
---
7
9
8
10
# ` serve `
Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ Stream logs from your site
105
105
106
106
| Subcommand | description |
107
107
| :--------------------------- | :-----|
108
- | [ ` logs:deploy ` ] ( /commands/logs#logsdeploy ) | (Beta) Stream the logs of deploys currently being built to the console |
109
- | [ ` logs:function ` ] ( /commands/logs#logsfunction ) | (Beta) Stream netlify function logs to the console |
108
+ | [ ` logs:deploy ` ] ( /commands/logs#logsdeploy ) | Stream the logs of deploys currently being built to the console |
109
+ | [ ` logs:function ` ] ( /commands/logs#logsfunction ) | Stream netlify function logs to the console |
110
110
111
111
112
112
### [ open] ( /commands/open )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export const createLogsBuildCommand = (program: BaseCommand) => {
8
8
program
9
9
. command ( 'logs:deploy' )
10
10
. alias ( 'logs:build' )
11
- . description ( '(Beta) Stream the logs of deploys currently being built to the console' )
11
+ . description ( 'Stream the logs of deploys currently being built to the console' )
12
12
. action ( async ( options : OptionValues , command : BaseCommand ) => {
13
13
const { logsBuild } = await import ( './build.js' )
14
14
await logsBuild ( options , command )
@@ -28,7 +28,7 @@ export const createLogsFunctionCommand = (program: BaseCommand) => {
28
28
'netlify logs:function my-function' ,
29
29
'netlify logs:function my-function -l info warn' ,
30
30
] )
31
- . description ( '(Beta) Stream netlify function logs to the console' )
31
+ . description ( 'Stream netlify function logs to the console' )
32
32
. action ( async ( functionName : string | undefined , options : OptionValues , command : BaseCommand ) => {
33
33
const { logsFunction } = await import ( './functions.js' )
34
34
await logsFunction ( functionName , options , command )
You can’t perform that action at this time.
0 commit comments