mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Further fix to debugging
Using the wrong sub to check what level of debugging was in use
This commit is contained in:
parent
7981edecca
commit
4f93b8fa3e
1 changed files with 2 additions and 2 deletions
|
@ -996,7 +996,7 @@ sub retile_hosts {
|
|||
);
|
||||
}
|
||||
|
||||
$self->config->dump("noexit") if ( $self->options->debug > 1 );
|
||||
$self->config->dump("noexit") if ( $self->options->debug_level > 1 );
|
||||
|
||||
# now find the size of the window decorations
|
||||
if ( !exists( $self->config->{internal_terminal_wm_decoration_left} ) ) {
|
||||
|
@ -1149,7 +1149,7 @@ sub capture_terminal() {
|
|||
my ($self) = @_;
|
||||
$self->debug( 0, "Stub for capturing a terminal window" );
|
||||
|
||||
return if ( $self->coptions->debug < 6 );
|
||||
return if ( $self->options->debug_level < 6 );
|
||||
|
||||
# should never see this - all experimental anyhow
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue