Merge branch '1.2.x'
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2015 the original author or authors.
|
||||
* Copyright 2012-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -36,14 +36,14 @@ import org.springframework.util.StringUtils;
|
||||
public class LogFile {
|
||||
|
||||
/**
|
||||
* The name of the Spring property that contains the name of the logging configuration
|
||||
* file.
|
||||
* The name of the Spring property that contains the name of the log file. Names can
|
||||
* be an exact location or relative to the current directory.
|
||||
*/
|
||||
public static final String FILE_PROPERTY = "logging.file";
|
||||
|
||||
/**
|
||||
* The name of the Spring property that contains the path where the logging
|
||||
* configuration can be found.
|
||||
* The name of the Spring property that contains the directory where log files are
|
||||
* written.
|
||||
*/
|
||||
public static final String PATH_PROPERTY = "logging.path";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2015 the original author or authors.
|
||||
* Copyright 2012-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -88,14 +88,14 @@ public class LoggingApplicationListener implements GenericApplicationListener {
|
||||
public static final String REGISTER_SHUTDOWN_HOOK_PROPERTY = "logging.register-shutdown-hook";
|
||||
|
||||
/**
|
||||
* The name of the Spring property that contains the path where the logging
|
||||
* configuration can be found.
|
||||
* The name of the Spring property that contains the directory where log files are
|
||||
* written.
|
||||
*/
|
||||
public static final String PATH_PROPERTY = LogFile.PATH_PROPERTY;
|
||||
|
||||
/**
|
||||
* The name of the Spring property that contains the name of the logging configuration
|
||||
* file.
|
||||
* The name of the Spring property that contains the name of the log file. Names can
|
||||
* be an exact location or relative to the current directory.
|
||||
*/
|
||||
public static final String FILE_PROPERTY = LogFile.FILE_PROPERTY;
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
{
|
||||
"name": "logging.file",
|
||||
"type": "java.lang.String",
|
||||
"description": "Log file name.",
|
||||
"description": "Name of the log file. Names can be an exact location or relative to the current directory.",
|
||||
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
|
||||
},
|
||||
{
|
||||
@@ -69,7 +69,7 @@
|
||||
{
|
||||
"name": "logging.path",
|
||||
"type": "java.lang.String",
|
||||
"description": "Location of the log file.",
|
||||
"description": "Directory where log files are written.",
|
||||
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user