Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
*/
public final class ServiceOperations {
private static final Log LOG = LogFactory.getLog(AbstractService.class);
private static final Log LOG = LogFactory.getLog(ServiceOperations.class);

private ServiceOperations() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
*/
public class SessionManager extends CompositeService {

private static final Log LOG = LogFactory.getLog(CompositeService.class);
private static final Log LOG = LogFactory.getLog(SessionManager.class);
public static final String HIVERCFILE = ".hiverc";
private HiveConf hiveConf;
private final Map<SessionHandle, HiveSession> handleToSession =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ private[hive] object SparkSQLCLIDriver extends Logging {
private[hive] class SparkSQLCLIDriver extends CliDriver with Logging {
private val sessionState = SessionState.get().asInstanceOf[CliSessionState]

private val LOG = LogFactory.getLog("CliDriver")
private val LOG = LogFactory.getLog(classOf[SparkSQLCLIDriver])

private val console = new SessionState.LogHelper(LOG)

Expand Down