Skip to content

Commit

Permalink
Remove excessive logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Aug 17, 2023
1 parent 4df9c1c commit 72f5bd8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tgui/packages/tgui/interfaces/KeyBinds.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { useBackend, useLocalState } from '../backend';
import { Button, Flex, Section, Box, Input, Dropdown } from '../components';
import { Window } from '../layouts';
import { globalEvents } from '../events.js';
import { createLogger } from '../logging';

const KEY_MODS = {
'SHIFT': true,
Expand Down Expand Up @@ -34,10 +33,6 @@ export const KeyBinds = (props, context) => {
? getAllKeybinds(glob_keybinds)
: glob_keybinds[selectedTab];

const logger = createLogger('waa');

logger.warn(keybinds_to_use);

const filteredKeybinds = keybinds_to_use.filter((val) =>
val.full_name.toLowerCase().match(searchTerm)
);
Expand Down

0 comments on commit 72f5bd8

Please sign in to comment.