Skip to content
Snippets Groups Projects
Commit c2577861 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

tighten up some stray debug logging.

parent 7371e174
Branches
Tags
No related merge requests found
......@@ -35,8 +35,6 @@ export default class SettingsUpdatesForm extends Component {
versionInfo = versionInfo ? JSON.parse(versionInfo.value) : null;
console.log(versionInfo);
/*
We expect the versionInfo to take on the JSON structure detailed below.
The 'older' section should contain only the last 5 previous versions, we don't need to go on forever.
......
......@@ -270,7 +270,6 @@ export default class Dashboard extends Component {
// we don't call this initially because DashCards initiate their own fetchCardData
fetchDashboardCardData(props, clearExisting) {
console.log("refreshing card data");
if (props.dashboard) {
for (const dashcard of props.dashboard.ordered_cards) {
const cards = [dashcard.card].concat(dashcard.series || []);
......
......@@ -48,7 +48,6 @@ QueryBuilderModule.controller('QB', ['$scope', '$rootScope', '$location', '$rout
$rootScope.$broadcast(eventName, value);
},
onChangeLocation: function(url) {
console.log("changing location");
$scope.$apply(() => $location.url(url));
}
};
......
......@@ -19,7 +19,6 @@ log4j.appender.metabase=metabase.logger.Appender
# customizations to logging by package
log4j.logger.metabase=INFO
log4j.logger.metabase.driver=DEBUG
log4j.logger.metabase.middleware=DEBUG
log4j.logger.metabase.query-processor=DEBUG
log4j.logger.metabase.sync-database=DEBUG
# c3p0 connection pools tend to log useless warnings way too often; only log actual errors
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment