Skip to content

Commit

Permalink
[Optmize] Remove unuse log (DataLinkDC#3413)
Browse files Browse the repository at this point in the history
Co-authored-by: gaoyan1998 <[email protected]>
  • Loading branch information
gaoyan1998 and gaoyan1998 authored Apr 18, 2024
1 parent 7b08828 commit b099de0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion dinky-web/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default async () => {
})
});

console.log();
return {
...config,
testEnvironmentOptions: {
Expand Down
1 change: 0 additions & 1 deletion dinky-web/src/pages/DevOps/JobDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ const JobDetail = (props: any) => {
},
{ tab: l('devops.jobinfo.config.JobAlert'), key: OperatorEnum.JOB_ALERT }
];
console.log(!!data);

return (
<PageContainer
Expand Down
1 change: 0 additions & 1 deletion dinky-web/src/pages/Metrics/JobMetricsList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ const JobMetricsList = (props: MetricsProps) => {
setJobIds(jids.join(','));
if (timeRange.isReal) {
return subscribeTopic(topics, (data: SseData) => {
console.log(data.data);
setChartDatas((prevState) => dataProcess(prevState, [data.data]));
});
}
Expand Down
2 changes: 0 additions & 2 deletions dinky-web/src/pages/Other/Redirect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ import { Navigate, useModel } from 'umi';
const Redirect = () => {
const { initialState, _ } = useModel('@@initialState');

console.log(initialState);

const filterMenus = (menus: SysMenu[]) => {
return menus?.filter((menu) => menu.type !== 'F');
};
Expand Down

0 comments on commit b099de0

Please sign in to comment.