Skip to content

Commit ebaf88f

Browse files
committed
DISPATCH-1914 Removed some extraneous debugging log statements from the console's schema page
1 parent d08f33a commit ebaf88f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

console/react/src/details/schema/schemaPage.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ class SchemaPage extends React.Component {
5858
const child = { name: entity, id: `ID.${this.nextId++}` };
5959
const keys = Object.keys(schema[entity]);
6060
keys.forEach(key => {
61-
console.log(
62-
`processing schema[${entity}][${key}] which is type ${typeof schema[entity][key]}`
63-
);
6461
const isArray = Array.isArray(schema[entity][key]);
6562
if (typeof schema[entity][key] === "object" && !isArray) {
6663
if (!child.children) {

0 commit comments

Comments
 (0)