Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
d554aa34
Commit
d554aa34
authored
Oct 20, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4241 from izeye/trace
* pr/4241: Remove unused property in TraceProperties
parents
fc55d8b7
f67b6a23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
17 deletions
+1
-17
TraceProperties.java
...g/springframework/boot/actuate/trace/TraceProperties.java
+1
-17
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/TraceProperties.java
View file @
d554aa34
...
...
@@ -43,19 +43,11 @@ public class TraceProperties {
DEFAULT_INCLUDES
=
Collections
.
unmodifiableSet
(
defaultIncludes
);
}
private
static
final
int
DEFAULT_MAX_CONTENT_LENGTH
=
32768
;
/**
* Items to included in the trace. Defaults to request/response headers and errors.
* Items to
be
included in the trace. Defaults to request/response headers and errors.
*/
private
Set
<
Include
>
include
=
new
HashSet
<
Include
>(
DEFAULT_INCLUDES
);
/**
* Maximum number of content bytes that can be traced before being truncated (-1 for
* unlimited).
*/
private
int
maxContentLength
=
DEFAULT_MAX_CONTENT_LENGTH
;
public
Set
<
Include
>
getInclude
()
{
return
this
.
include
;
}
...
...
@@ -64,14 +56,6 @@ public class TraceProperties {
this
.
include
=
include
;
}
public
int
getMaxContentLength
()
{
return
this
.
maxContentLength
;
}
public
void
setMaxContentLength
(
int
maxContentLength
)
{
this
.
maxContentLength
=
maxContentLength
;
}
/**
* Include options for tracing.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment