Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
becf6896
Unverified
Commit
becf6896
authored
Jan 19, 2020
by
Greg Messner
Committed by
GitHub
Jan 19, 2020
Browse files
Fixed typo in logging section.
parent
75dcaabf
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
becf6896
...
@@ -149,13 +149,13 @@ gitLabApi.enableRequestResponseLogging();
...
@@ -149,13 +149,13 @@ gitLabApi.enableRequestResponseLogging();
gitLabApi
.
enableRequestResponseLogging
(
java
.
util
.
logging
.
Level
.
INFO
);
gitLabApi
.
enableRequestResponseLogging
(
java
.
util
.
logging
.
Level
.
INFO
);
// Log using the specified logger and the INFO level
// Log using the specified logger and the INFO level
gitLabApi
.
enableRequestResponseLogging
(
you
t
LoggerInstance
,
java
.
util
.
logging
.
Level
.
INFO
);
gitLabApi
.
enableRequestResponseLogging
(
you
r
LoggerInstance
,
java
.
util
.
logging
.
Level
.
INFO
);
// Log using the shared logger, at the INFO level, and include up to 1024 bytes of entity logging
// Log using the shared logger, at the INFO level, and include up to 1024 bytes of entity logging
gitLabApi
.
enableRequestResponseLogging
(
java
.
util
.
logging
.
Level
.
INFO
,
1024
);
gitLabApi
.
enableRequestResponseLogging
(
java
.
util
.
logging
.
Level
.
INFO
,
1024
);
// Log using the specified logger, at the INFO level, and up to 1024 bytes of entity logging
// Log using the specified logger, at the INFO level, and up to 1024 bytes of entity logging
gitLabApi
.
enableRequestResponseLogging
(
you
t
LoggerInstance
,
java
.
util
.
logging
.
Level
.
INFO
,
1024
);
gitLabApi
.
enableRequestResponseLogging
(
you
r
LoggerInstance
,
java
.
util
.
logging
.
Level
.
INFO
,
1024
);
```
```
---
---
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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