Skip to content

Commit

Permalink
Fix incorrect logger classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
gcurtis committed Feb 17, 2015
1 parent 1e2318b commit 6b6dccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/box/sdk/BoxAPIResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* </p>
*/
public class BoxAPIResponse {
private static final Logger LOGGER = Logger.getLogger(BoxFolder.class.getName());
private static final Logger LOGGER = Logger.getLogger(BoxAPIResponse.class.getName());
private static final int BUFFER_SIZE = 8192;

private final HttpURLConnection connection;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/box/sdk/BoxMultipartRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
*/
public class BoxMultipartRequest extends BoxAPIRequest {
private static final Logger LOGGER = Logger.getLogger(BoxFolder.class.getName());
private static final Logger LOGGER = Logger.getLogger(BoxMultipartRequest.class.getName());
private static final String BOUNDARY = "da39a3ee5e6b4b0d3255bfef95601890afd80709";
private static final int BUFFER_SIZE = 8192;

Expand Down

0 comments on commit 6b6dccb

Please sign in to comment.