summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorit33 <iantien@gmail.com>2015-09-25 21:38:38 -0700
committerit33 <iantien@gmail.com>2015-09-25 21:38:38 -0700
commit4f81f8826ba3e242e3a985e7e3a07ae72ae02846 (patch)
tree939a23e1d99890848926b26475b92023bad9f994 /web
parent7a777217be65b193c67a4d0e7e87062fe4208ed3 (diff)
downloadchat-4f81f8826ba3e242e3a985e7e3a07ae72ae02846.tar.gz
chat-4f81f8826ba3e242e3a985e7e3a07ae72ae02846.tar.bz2
chat-4f81f8826ba3e242e3a985e7e3a07ae72ae02846.zip
Update log_settings.jsx
Diffstat (limited to 'web')
-rw-r--r--web/react/components/admin_console/log_settings.jsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/web/react/components/admin_console/log_settings.jsx b/web/react/components/admin_console/log_settings.jsx
index d66801431..781a937bf 100644
--- a/web/react/components/admin_console/log_settings.jsx
+++ b/web/react/components/admin_console/log_settings.jsx
@@ -101,7 +101,7 @@ export default class LogSettings extends React.Component {
className='control-label col-sm-4'
htmlFor='consoleEnable'
>
- {'Log To the Console: '}
+ {'Log to the Console: '}
</label>
<div className='col-sm-8'>
<label className='radio-inline'>
@@ -125,7 +125,7 @@ export default class LogSettings extends React.Component {
/>
{'false'}
</label>
- <p className='help-text'>{'Typically set to false in production. Developers may set this field to true to output log messages to console based on the console level option. If true then the server will output messages to the standard output stream (stdout).'}</p>
+ <p className='help-text'>{'Typically set to false in production. Developers may set this field to true to output log messages to console based on the console level option. If true, server writes messages to the standard output stream (stdout).'}</p>
</div>
</div>
@@ -149,7 +149,7 @@ export default class LogSettings extends React.Component {
<option value='INFO'>{'INFO'}</option>
<option value='ERROR'>{'ERROR'}</option>
</select>
- <p className='help-text'>{'This setting determines the level of detail at which log events are written to the console. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers debugging issues working on debugging issues.'}</p>
+ <p className='help-text'>{'This setting determines the level of detail at which log events are written to the console. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.'}</p>
</div>
</div>
@@ -157,7 +157,7 @@ export default class LogSettings extends React.Component {
<label
className='control-label col-sm-4'
>
- {'Log To File: '}
+ {'Log to File: '}
</label>
<div className='col-sm-8'>
<label className='radio-inline'>
@@ -181,7 +181,7 @@ export default class LogSettings extends React.Component {
/>
{'false'}
</label>
- <p className='help-text'>{'Typically set to true in production. When true log files are written to the file specified in file location field below.'}</p>
+ <p className='help-text'>{'Typically set to true in production. When true, log files are written to the log file specified in file location field below.'}</p>
</div>
</div>
@@ -205,7 +205,7 @@ export default class LogSettings extends React.Component {
<option value='INFO'>{'INFO'}</option>
<option value='ERROR'>{'ERROR'}</option>
</select>
- <p className='help-text'>{'This setting determines the level of detail at which log events are written to the file. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers debugging issues working on debugging issues.'}</p>
+ <p className='help-text'>{'This setting determines the level of detail at which log events are written to the log file. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.'}</p>
</div>
</div>
@@ -227,7 +227,7 @@ export default class LogSettings extends React.Component {
onChange={this.handleChange}
disabled={!this.state.fileEnable}
/>
- <p className='help-text'>{'File to which log files are written. If blank, will be set to ./logs/mattermost.log. Log rotation is enabled and new files may be created in the same directory.'}</p>
+ <p className='help-text'>{'File to which log files are written. If blank, will be set to ./logs/mattermost.log. Log rotation is enabled and every 10,000 lines of log information is written to a new file, for example mattermost.1.log, mattermost.2.log, and so forth.'}</p>
</div>
</div>