Modifying a file ID

The following displays the current log configuration:

A:ALA-12>config>log# info
------------------------------------------
        file-id name "1"
            description "This is a log file."
            location cf1:
            rollover 600 retention 24
        exit
----------------------------------------------
A:ALA-12>config>log#

The following displays an example to modify log file parameters:

Example:config# log
	config>log# file-id 1
	config>log>file-id# description "LocationTest."
	config>log>file-id# rollover 2880 retention 500
	config>log>file-id# exit 

The following displays the file modifications:

A:ALA-12>config>log# info
----------------------------------------------
...
file-id name "1"
    description "LocationTest."
    rollover 2880 retention 500
exit
...
----------------------------------------------
A:ALA-12>config>log#

The following displays an example to modify log file parameters:

Example:config# log
	config>log# file-id 1
	config>log>file-id# description "LocationTest."
	config>log>file-id# location cf2:
	config>log>file-id# rollover 2880 retention 500
	config>log>file-id# exit 

The following displays the file modifications:

A:ALA-12>config>log# info
----------------------------------------------
...
file-id name "1"
    description "LocationTest."
    location cf2:
    rollover 2880 retention 500
exit
...
----------------------------------------------
A:ALA-12>config>log#