Skip to content

Commit 6b6dccb

Browse files
committed
Fix incorrect logger classnames
1 parent 1e2318b commit 6b6dccb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/box/sdk/BoxAPIResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* </p>
2424
*/
2525
public class BoxAPIResponse {
26-
private static final Logger LOGGER = Logger.getLogger(BoxFolder.class.getName());
26+
private static final Logger LOGGER = Logger.getLogger(BoxAPIResponse.class.getName());
2727
private static final int BUFFER_SIZE = 8192;
2828

2929
private final HttpURLConnection connection;

src/main/java/com/box/sdk/BoxMultipartRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
*/
2222
public class BoxMultipartRequest extends BoxAPIRequest {
23-
private static final Logger LOGGER = Logger.getLogger(BoxFolder.class.getName());
23+
private static final Logger LOGGER = Logger.getLogger(BoxMultipartRequest.class.getName());
2424
private static final String BOUNDARY = "da39a3ee5e6b4b0d3255bfef95601890afd80709";
2525
private static final int BUFFER_SIZE = 8192;
2626

0 commit comments

Comments
 (0)